:root {
  --navy: #0d2b4e;
  --navy-deep: #081c33;
  --blue-mid: #1a5fa8;
  --blue-steel: #2e85d4;
  --blue-light: #5bb3f0;
  --blue-pale: #68bff9;
  --white: #ffffff;
  --off-white: #f0f6fc;
  --muted: #8aafc8;
  --border: #435e72;
  --border2: rgba(46, 133, 212, 0.25);
  --shadow: 0 24px 64px rgba(8, 28, 51, 0.55);
  --nav-h: 68px;
  --radius: 10px;
  --tsm-navy: #0f1f3d; 
  --tsm-gold: #e2a94b;
  --tsm-light: #f5f7fb;
  --tsm-white: #ffffff;
  --tsm-muted: #7a85a0;
  --tsm-border: #e2e7f0;
  --faq-navy: #0f1f3d; 
  --faq-gold: #e2a94b;
  --faq-light: #f5f7fb;
  --faq-white: #ffffff;
  --faq-muted: #7a85a0;
  --faq-border: #e2e7f0;
  --faq-soft: #f0f3f9;
  --blue: #1fa3dc;
  --blue-dk: #1180b0;
  --blue-lt: #e8f5fd;
  --navy: #0d2137;
  --gray-lt: #f4f8fc;
  --white: #ffffff;
  --text: #1a2e42;
  --text-lt: #4a6074;
  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;
  --grad: linear-gradient(135deg, var(--blue-mid), var(--blue-steel));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  min-height: 100vh;
}

a {
  text-decoration: none;
}

/* ── TOP UTILITY BAR ── */
.topbar {
  background: var(--navy-deep);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4fc8a0;
  box-shadow: 0 0 6px #4fc8a0;
  animation: glow 2.5s ease-in-out infinite;
}

@keyframes glow {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px #4fc8a0;
  }

  50% {
    opacity: 0.5;
    box-shadow: 0 0 2px #4fc8a0;
  }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-right a {
  color: #ffffff;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(46, 133, 212, 0.18);
  border: 1px solid var(--border2);
}

.topbar-right a:hover {
  color: var(--blue-light);
}

.topbar-right .divider {
  width: 1px;
  height: 14px;
  background: #ffffff59;
}

.temp-badge {
  background: rgba(46, 133, 212, 0.18);
  border: 1px solid var(--border2);
  color: #ffffff;
  padding: 1px 10px;
  border-radius: 4px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
}

.temp-badge a {
  color: #fff;
}

/* ── MAIN NAV ── */
nav {
  background: #ffffff;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--blue-mid);
  box-shadow: 0 4px 24px rgba(8, 28, 51, 0.4);
}

/* Subtle ice texture overlay */
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 5% 50%, rgba(46, 133, 212, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 95% 50%, rgba(91, 179, 240, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: relative;
  gap: 0;
}

/* ── LOGO ── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: 44px;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  transition: box-shadow .3s;
}



.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-top: 3px;
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
  flex: 1;
  margin: 0;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: 100%;
  color: var(--blue-pale);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s;
  border: none;
  background: none;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 3px;
  background: var(--grad);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item:hover>.nav-link,
.nav-item:focus-within>.nav-link {
  color: #1b62ab;
}

.nav-item:hover>.nav-link::before,
.nav-item:focus-within>.nav-link::before {
  transform: scaleX(1);
}

.chevron {
  width: 13px;
  height: 13px;
  transition: transform .25s ease;
  flex-shrink: 0;
  color: var(--blue-light);
}

.nav-item:hover>.nav-link .chevron,
.nav-item:focus-within>.nav-link .chevron {
  transform: rotate(180deg);
}

/* ── DROPDOWN PANEL ── */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--navy-deep);
  border: 1px solid var(--border2);
  border-top: 2px solid var(--blue-steel);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s, transform .22s, visibility .22s;
  box-shadow: var(--shadow);
  z-index: 200;
}

.nav-item:hover>.dropdown,
.nav-item:focus-within>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MEGA */
.dropdown.mega {
  min-width: 675px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.mega-col {
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  border-right: 1px solid var(--border);
}

.mega-col:last-child {
  border-right: none;
}

.mega-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-steel);
  padding: 4px 8px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mega-label-icon {
  font-size: 14px;
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--blue-pale);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  transition: background .15s, color .15s, padding-left .15s;
  position: relative;
  cursor: pointer;
}

.drop-item:hover {
  background: rgba(46, 133, 212, 0.15);
  color: var(--white);
  padding-left: 14px;
}

.drop-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(46, 133, 212, 0.12);
  border: 1px solid var(--border2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: background .15s, border-color .15s;
}

.drop-item:hover .drop-icon {
  background: rgba(46, 133, 212, 0.28);
  border-color: var(--blue-steel);
}

.drop-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.drop-name {
  font-weight: 500;
  font-size: 13.5px;
}

.drop-desc {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.03em;
}

/* Badge */
.badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue-mid);
  color: var(--white);
  padding: 1px 7px;
  border-radius: 3px;
  margin-left: auto;
  flex-shrink: 0;
}

.badge.new {
  background: linear-gradient(90deg, #1a5fa8, #2e85d4);
}

.badge.hot {
  background: linear-gradient(90deg, #d44f2e, #f07830);
}

/* Divider inside dropdown */
.drop-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* ── L3 SUB-DROPDOWN ── */
.has-sub {
  position: relative;
}

.sub-arrow {
  width: 13px;
  height: 13px;
  margin-left: auto;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}

.has-sub:hover .sub-arrow {
  transform: rotate(-90deg);
  color: var(--blue-light);
}

.sub-dropdown {
  position: absolute;
  top: -10px;
  left: calc(100% + 8px);
  min-width: 200px;
  background: var(--navy-deep);
  border: 1px solid var(--border2);
  border-top: 2px solid var(--blue-steel);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: var(--shadow);
  z-index: 300;
}

.has-sub:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 10px;
  border-radius: 7px;
  color: var(--blue-pale);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  transition: background .15s, color .15s;
}

.sub-item:hover {
  background: rgba(46, 133, 212, 0.15);
  color: var(--white);
}

.sub-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}

.sub-item:hover .sub-bullet {
  background: var(--blue-light);
  transform: scale(1.4);
}

/* Featured card inside dropdown */
.mega-featured {
  margin: 8px 10px 10px;
  padding: 14px;
  background: var(--grad);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feat-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.feat-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}

.feat-link:hover {
  color: #fff;
}

/* ── NAV RIGHT ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-ghost {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 7px;
  border: 1px solid var(--border2);
  background: var(--blue-pale);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.btn-ghost:hover {
  border-color: var(--blue-steel);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-steel));
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 7px;
  background: var(--grad);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: filter .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(26, 95, 168, 0.5);
}

.btn-cta:hover {
  background: var(--blue-pale);
}

.btn-cta:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--border2);
  border-radius: 7px;
  background: none;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-pale);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 34px);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  border-top: 2px solid var(--blue-mid);
  overflow-y: auto;
  z-index: 999;
  padding: 16px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.m-section {
  margin-bottom: 6px;
}

.m-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-pale);
  background: rgba(46, 133, 212, 0.08);
  border: 1px solid var(--border2);
  transition: background .2s;
  user-select: none;
}

.m-header:hover {
  background: rgba(46, 133, 212, 0.15);
}

.m-chevron {
  width: 15px;
  height: 15px;
  transition: transform .25s;
  color: var(--blue-light);
}

.m-section.open .m-chevron {
  transform: rotate(180deg);
}

.m-section.open .m-header {
  color: var(--white);
  background: rgba(46, 133, 212, 0.2);
}

.m-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.m-section.open .m-body {
  max-height: 700px;
}

.m-sublabel {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-steel);
  padding: 12px 14px 4px;
}

.m-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--blue-pale);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-top: 3px;
  transition: background .15s, color .15s;
}

.m-link:hover {
  background: rgba(46, 133, 212, 0.12);
  color: var(--white);
}

.m-icon {
  font-size: 15px;
}

.m-plain {
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--blue-pale);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(46, 133, 212, 0.08);
  border: 1px solid var(--border2);
  margin-bottom: 6px;
  transition: background .15s, color .15s;
}

.m-plain:hover {
  background: rgba(46, 133, 212, 0.18);
  color: var(--white);
}

.m-nav-btns {
  display: flex;
  gap: 8px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.m-nav-btns .btn-ghost,
.m-nav-btns .btn-cta {
  flex: 1;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .nav-link {
    padding: 0 12px;
    font-size: 13.5px;
  }
}

@media (max-width: 860px) {
  .topbar .topbar-right .extra {
    display: none;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  nav {
    top: 0;
  }

  .mobile-drawer {
    top: var(--nav-h);
    display: block;
  }

  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 20px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding: 60px 24px 56px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
}

.abt-about-section {}

.abt-section-title span {
  font-size: 12px;
  background: #99d3fa;
  padding: 6px 12px;
  border-radius: 50px;
}

.abt-section-subtitle span {
  font-size: 25px;
}

/* Collage Container */
.abt-collage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-right: 30px;
  margin-bottom: 20px;
  float: left;
  width: 45%;
}

.abt-collage-item {
  overflow: hidden;
  /* border-radius: 12px; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
}

.abt-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.abt-collage-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.abt-collage-item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Square images */
.abt-collage-item.abt-square {
  aspect-ratio: 1 / 1;
}

/* Rectangle image */
.abt-collage-item.abt-rectangle {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 0.8;
}

/* Animations */
.abt-collage-item.abt-square:nth-child(1) {
  animation: abt-slide-in-left 0.8s ease-out 0.2s forwards;
}

.abt-collage-item.abt-square:nth-child(2) {
  animation: abt-slide-in-right 0.8s ease-out 0.4s forwards;
}

.abt-collage-item.abt-rectangle {
  animation: abt-slide-in-up 0.8s ease-out 0.6s forwards;
}

@keyframes abt-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes abt-slide-in-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes abt-slide-in-up {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.abt-content-text p {
  color: #333;
  font-size: 16px;
}

.abt-content-text h1{
  font-size: 40px;
  font-weight: 700;
  color: var(--blue-dk);
}

.abt-highlight {
  color: #000;
  font-weight: 600;
}

.abt-content-text::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive */
@media (max-width: 768px) {
  .abt-collage-wrapper {
    float: none;
    width: 100%;
    margin-right: 0;
    grid-template-columns: 1fr;
  }

  .abt-collage-item.abt-square:nth-child(2),
  .abt-collage-item.abt-rectangle {
    grid-column: 1 / -1;
  }
}

/* Floating Background Icons */
.abt-floating-bg {
  position: fixed;
  font-size: 80px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
  animation: abt-float 6s ease-in-out infinite;
}

.abt-floating-bg:nth-child(1) {
  top: 10%;
  right: 5%;
}

.abt-floating-bg:nth-child(2) {
  top: 30%;
  left: 5%;
  animation-delay: 1s;
  animation-duration: 7s;
}

.abt-floating-bg:nth-child(3) {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.abt-floating-bg:nth-child(4) {
  top: 60%;
  left: 3%;
  animation-delay: 1.5s;
  animation-duration: 8s;
}

.abt-floating-bg:nth-child(5) {
  bottom: 10%;
  right: 3%;
  animation-delay: 0.5s;
  animation-duration: 7.5s;
}

@keyframes abt-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-40px) rotate(10deg);
  }
}

/* ── SECTION ── */
#products {
  padding: 80px 0 90px;
  background: var(--white);
  position: relative;
}

#products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--blue) 30%, var(--blue-dk) 70%, transparent);
}

/* ── SECTION HEADER ── */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.sec-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 1.8s ease-in-out infinite alternate;
}

@keyframes blink {
  from {
    opacity: .2;
    transform: scale(.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sec-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .95;
  margin-bottom: 14px;
}

.sec-title .dk {
  color: var(--navy);
}

.sec-title .bl {
  background: linear-gradient(90deg, var(--blue), #0098d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: .94rem;
  color: var(--text-lt);
  max-width: 500px;
  line-height: 1.75;
}

.sec-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border: 1.5px solid rgba(31, 163, 220, .35);
  padding: 9px 20px;
  border-radius: 25px;
  transition: background .25s, color .25s;
  white-space: nowrap;
  align-self: flex-end;
}

.sec-view-all:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── PRODUCT CARD ── */
.prod-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(13, 33, 55, .12);
  border-color: rgba(31, 163, 220, .32);
}

/* image */
.prod-img-wrap {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.prod-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.prod-img-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .65s ease;
}

.prod-card:hover .prod-img-link img {
  transform: scale(1.07);
}

/* image overlay + hover cta */
.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13, 33, 55, .52) 100%);
  opacity: 0;
  transition: opacity .35s;
}

.prod-card:hover .prod-img-overlay {
  opacity: 1;
}

.prod-hover-btn {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background: var(--white);
  color: var(--blue-dk);
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 25px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
}

.prod-card:hover .prod-hover-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* badge */
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-h);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

.prod-badge.pop {
  background: var(--blue-lt);
  color: var(--blue-dk);
  border: 1px solid rgba(31, 163, 220, .3);
}

.prod-badge.new {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #86efac;
}

.prod-badge.hot {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

.prod-badge.trend {
  background: #f3e8ff;
  color: #7c3aed;
  border: 1px solid #c4b5fd;
}

/* card body */
.prod-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.prod-cat {
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

.prod-cat i {
  font-size: .6rem;
}

/* MANDATORY TITLE ANCHOR */
.prod-title-link {
  text-decoration: none;
  display: block;
}

.prod-title {
  font-family: var(--font-h);
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1.1;
  transition: color .25s;
}

.prod-title-link:hover .prod-title {
  color: var(--blue);
}

.prod-desc {
  font-size: .82rem;
  color: var(--text-lt);
  line-height: 1.68;
}

/* spec pills */
.prod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.prod-spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .66rem;
  font-weight: 600;
  color: var(--text-lt);
  background: var(--gray-lt);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 10px;
  transition: background .25s, color .25s;
}

.prod-spec i {
  color: var(--blue);
  font-size: .58rem;
}

.prod-card:hover .prod-spec {
  background: var(--blue-lt);
  color: var(--blue-dk);
}

/* CTA row */
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  gap: 10px;
}

.prod-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s, color .2s;
}

.prod-link:hover {
  gap: 10px;
  color: var(--blue-dk);
}

.prod-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  color: #fff;
  font-family: var(--font-h);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(31, 163, 220, .3);
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}

.prod-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 163, 220, .5);
  color: #fff;
}

/* ── DIVIDER ── */
.sec-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 48px 0 40px;
}

.sec-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.sec-divider-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-lt);
  border: 1.5px solid rgba(31, 163, 220, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--blue);
}

/* ── WHY-US SECTION ── */
.why-us-section {
  padding: 80px 0;
  overflow: hidden;
}

/* ── LABEL BADGE ── */
.label-badge {
  display: inline-block;
  background: #e8f1fc;
  color: #3a3a3a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}

/* ── MAIN TITLE ── */
.main-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  color: #111;
  line-height: 1.2;
  margin-bottom: 22px;
}

/* ── BODY TEXT ── */
.body-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── STATS CARD ── */
.stats-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
  padding: 18px 24px;
  max-width: 370px;
}

.stats-thumb {
  position: relative;
  flex-shrink: 0;
  width: 110px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
}

.stats-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.12);
}

.play-btn span {
  width: 38px;
  height: 38px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.45);
}

.stats-info {
  flex: 1;
}

.stats-number {
  font-size: 2rem;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 10px;
}

.stats-divider {
  height: 2px;
  background: #e5e7eb;
  margin-bottom: 10px;
  border: none;
}

.stats-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: #111;
}

/* ── RIGHT COLUMN ── */
.right-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Large decorative circle */
.circle-border {
  position: relative;
  width: 420px;
  height: 420px;
  max-width: 100%;
}

.circle-border::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 3px solid #2563eb;
  opacity: 0.85;
  z-index: 0;
}

.circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
}

/* ── HEXAGON BADGE ── */
.hex-badge {
  position: absolute;
  bottom: 20px;
  left: -30px;
  z-index: 10;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hex-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-steel));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.hex-badge-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ── DECORATIVE TRIANGLES ── */
.triangle {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 5;
}

.tri-orange-1 {
  bottom: 70px;
  left: 110px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 22px solid var(--blue);
  transform: rotate(-30deg);
}

.tri-orange-2 {
  bottom: 30px;
  left: 145px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 18px solid var(--blue);
  transform: rotate(15deg);
}

.tri-purple {
  bottom: 0px;
  left: 80px;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 20px solid var(--blue);
  transform: rotate(10deg);
}

/* ── SMALL DOT DECORATIONS ── */
.dot-green {
  position: absolute;
  top: 90px;
  right: 40px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  z-index: 10;
}

.dot-blue {
  position: absolute;
  top: 165px;
  left: 15px;
  width: 8px;
  height: 8px;
  background: #2563eb;
  border-radius: 50%;
  z-index: 10;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .right-col {
    margin-top: 60px;
  }

  .circle-border {
    width: 340px;
    height: 340px;
  }

  .hex-badge {
    left: -10px;
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .why-us-section {
    padding: 50px 0;
  }

  .stats-card {
    max-width: 100%;
  }

  .circle-border {
    width: 280px;
    height: 280px;
  }

  .hex-badge {
    left: 0;
    width: 130px;
    height: 130px;
    bottom: 10px;
  }

  .hex-badge-text {
    font-size: 0.8rem;
  }

  .body-text {
    max-width: 100%;
  }
}

.call_back {
  font-family: 'DM Sans', sans-serif;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.cta-section {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1300px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #e2e6ea;
}

/* Decorative top bar */
.cta-section::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-dk) 0%, var(--blue) 40%, #1a2d5a 100%);
}

/* Subtle background pattern */
.cta-inner {
  position: relative;
  padding: 60px 60px 56px;
  text-align: center;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(26, 45, 90, 0.06) 0%, transparent 50%);
}

/* Top badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbf1ff;
  border: 1px solid var(--blue-dk);
  color: var(--blue-pale);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--blue-dk);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* Headline */
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  color: #1a2d5a;
  line-height: 1.18;
  margin-bottom: 18px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.cta-headline span {
  color: var(--blue-light);
  position: relative;
  display: inline-block;
}

/* Underline accent */
.cta-headline span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: var(--blue-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.6s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

/* Subtext */
.cta-sub {
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.cta-sub strong {
  color: #1a2d5a;
  font-weight: 600;
}

/* Divider row */
.divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dde1e7);
}

.divider-line.right {
  background: linear-gradient(90deg, #dde1e7, transparent);
}

.divider-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.01em;
}

.divider-label .icon {
  font-size: 18px;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 0px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
  max-width: 375px;
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s ease;
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.12);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-call {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.35);
}

.btn-call:hover {
  box-shadow: 0 10px 32px rgba(192, 57, 43, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1a5c2a 0%, #27ae60 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(39, 174, 96, 0.32);
}

.btn-whatsapp:hover {
  box-shadow: 0 10px 32px rgba(39, 174, 96, 0.42);
}

.btn-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #edf0f3;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.trust-item .tick {
  width: 18px;
  height: 18px;
  background: #eaf7ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #27ae60;
  flex-shrink: 0;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 580px) {
  .cta-inner {
    padding: 44px 28px 40px;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .trust-bar {
    gap: 16px;
  }
}

.sbc-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 0 0;
  width: 100%;
}

.sbc-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.sbc-section-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a2d5a;
  white-space: nowrap;
}

.sbc-section-label-accent {
  color: var(--blue);
}

.sbc-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #dde1ea, transparent);
  border-radius: 2px;
}

.sbc-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
}

/* --- Card 1: Compressors --- */
.sbc-card-compressor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #e8ecf1;
  padding: 28px 16px 20px;
  gap: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.sbc-card-compressor:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26, 45, 90, 0.12);
  border-color: var(--blue);
}

.sbc-icon-compressor {
  width: 125px;
  height: 125px;
  /* border-radius: 50%; */
  background: #1fa3dc1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue);
  transition: background 0.22s ease, transform 0.22s ease;
}

.sbc-icon-compressor img {
  height: 120px;
}

.sbc-card-compressor:hover .sbc-icon-compressor {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1);
}

.sbc-title-compressor {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a2d5a;
  text-align: center;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.sbc-card-compressor:hover .sbc-title-compressor {
  color: var(--blue);
}

.sbc-cta-compressor {
  font-size: 11.5px;
  color: #aab3c0;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.sbc-card-compressor:hover .sbc-cta-compressor {
  color: var(--blue);
  transform: translateX(3px);
}


.sbc-cta-controls {
  font-size: 11.5px;
  color: #aab3c0;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.sbc-card-controls:hover .sbc-cta-controls {
  color: var(--blue);
  transform: translateX(3px);
}

/* ── testimonial OUTER WRAPPER ── */
.tsm-outer {
  background: #fff;
  padding: 50px 0;
}

/* ── SECTION HEADER ── */
.tsm-header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  animation: tsm-rise 0.6s ease both;
}

.tsm-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbf1ff;
  border: 1px solid var(--blue-pale);
  color: var(--blue-dk);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tsm-eyebrow-pill i {
  font-size: 11px;
  color: var(--blue-steel);
}

.tsm-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}

.tsm-main-title-accent {
  color: var(--blue);
  font-style: italic;
}

.tsm-header-sub {
  font-size: 15px;
  color: var(--navy-deep);
  max-width: 480px;
  line-height: 1.7;
}

/* ── STATS ROW ── */
.tsm-stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  animation: tsm-rise 0.6s 0.1s ease both;
}

.tsm-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tsm-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.tsm-stat-number-accent {
  color: var(--blue);
}

.tsm-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--tsm-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tsm-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--tsm-border);
  align-self: center;
}

/* ── CARD GRID ── */
.tsm-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .tsm-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tsm-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ── BASE CARD STYLES (each card has unique class) ── */

/* Card 1 */
.tsm-card-arun {
  background: var(--tsm-white);
  border-radius: 18px;
  border: 1.5px solid var(--tsm-border);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: tsm-rise 0.6s 0.15s ease both;
}

.tsm-card-arun:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 31, 61, 0.1);
  border-color: var(--blue-mid);
}

/* Card 2 — featured (navy bg) */
.tsm-card-priya {
  background: var(--grad);
  border-radius: 18px;
  border: 1.5px solid var(--tsm-navy);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: tsm-rise 0.6s 0.25s ease both;
  grid-row: span 1;
}

.tsm-card-priya:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 31, 61, 0.28);
}

/* Card 3 */
.tsm-card-rohit {
  background: var(--tsm-white);
  border-radius: 18px;
  border: 1.5px solid var(--tsm-border);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: tsm-rise 0.6s 0.35s ease both;
}

.tsm-card-rohit:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 31, 61, 0.1);
  border-color: var(--blue-mid);
}

/* Card 4 */
.tsm-card-meera {
  background: var(--tsm-white);
  border-radius: 18px;
  border: 1.5px solid var(--tsm-border);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: tsm-rise 0.6s 0.2s ease both;
}

.tsm-card-meera:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 31, 61, 0.1);
  border-color: var(--blue);
}

/* Card 5 */
.tsm-card-suresh {
  background: #fff8f0;
  border-radius: 18px;
  border: 1.5px solid #f5d89a55;
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: tsm-rise 0.6s 0.3s ease both;
}

.tsm-card-suresh:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(226, 169, 75, 0.18);
  border-color: var(--tsm-gold);
}

/* Card 6 */
.tsm-card-divya {
  background: var(--tsm-white);
  border-radius: 18px;
  border: 1.5px solid var(--tsm-border);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: tsm-rise 0.6s 0.4s ease both;
}

.tsm-card-divya:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 31, 61, 0.1);
  border-color: var(--blue);
}

/* ── QUOTE ICON (unique per card) ── */
.tsm-quote-icon-arun,
.tsm-quote-icon-rohit,
.tsm-quote-icon-meera,
.tsm-quote-icon-suresh,
.tsm-quote-icon-divya {
  font-size: 28px;
  color: #e2e7f0;
  line-height: 1;
}

.tsm-quote-icon-priya {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

/* ── STARS (unique per card) ── */
.tsm-stars-arun,
.tsm-stars-rohit,
.tsm-stars-meera,
.tsm-stars-suresh,
.tsm-stars-divya {
  display: flex;
  gap: 4px;
  color: var(--tsm-gold);
  font-size: 13px;
}

.tsm-stars-priya {
  display: flex;
  gap: 4px;
  color: var(--tsm-gold);
  font-size: 13px;
}

/* ── REVIEW TEXT (unique per card) ── */
.tsm-review-text-arun,
.tsm-review-text-rohit,
.tsm-review-text-meera,
.tsm-review-text-divya {
  font-size: 14.5px;
  color: #3d4a65;
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.tsm-review-text-priya {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.tsm-review-text-suresh {
  font-size: 14.5px;
  color: #5a4020;
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

/* ── AUTHOR ROW (unique per card) ── */
.tsm-author-row-arun,
.tsm-author-row-rohit,
.tsm-author-row-meera,
.tsm-author-row-suresh,
.tsm-author-row-divya {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--tsm-border);
}

.tsm-author-row-priya {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── AVATAR CIRCLES (unique per card) ── */
.tsm-avatar-arun {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2d5a, #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0;
}

.tsm-avatar-priya {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2a94b, #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.tsm-avatar-rohit {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4c81, #1a7abf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.tsm-avatar-meera {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b2d8b, #a855c9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.tsm-avatar-suresh {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b07d20, #e2a94b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.tsm-avatar-divya {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ── AUTHOR INFO ── */
.tsm-author-info-arun,
.tsm-author-info-rohit,
.tsm-author-info-meera,
.tsm-author-info-suresh,
.tsm-author-info-divya {
  flex: 1;
}

.tsm-author-info-priya {
  flex: 1;
}

.tsm-author-name-arun,
.tsm-author-name-rohit,
.tsm-author-name-meera,
.tsm-author-name-suresh,
.tsm-author-name-divya {
  font-size: 14px;
  font-weight: 600;
  color: var(--tsm-navy);
  line-height: 1.3;
}

.tsm-author-name-priya {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.tsm-author-role-arun,
.tsm-author-role-rohit,
.tsm-author-role-meera,
.tsm-author-role-suresh,
.tsm-author-role-divya {
  font-size: 12px;
  color: var(--tsm-muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tsm-author-role-priya {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tsm-author-role-arun i,
.tsm-author-role-rohit i,
.tsm-author-role-meera i,
.tsm-author-role-suresh i,
.tsm-author-role-divya i {
  font-size: 10px;
  color: var(--blue);
}

.tsm-author-role-priya i {
  font-size: 10px;
  color: var(--tsm-gold);
}

/* ── VERIFIED BADGE ── */
.tsm-verified-arun,
.tsm-verified-rohit,
.tsm-verified-meera,
.tsm-verified-suresh,
.tsm-verified-divya {
  font-size: 11px;
  color: #27ae60;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.tsm-verified-priya {
  font-size: 11px;
  color: var(--tsm-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

/* ── BOTTOM BAR ── */
.tsm-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  color: var(--tsm-muted);
  font-size: 13px;
  font-weight: 500;
  animation: tsm-rise 0.6s 0.5s ease both;
}

.tsm-bottom-bar i {
  color: var(--tsm-gold);
}

.tsm-bottom-bar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tsm-border);
}

/* ── ANIMATION ── */
@keyframes tsm-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ── OUTER WRAPPER ── */
.faq-section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}

/* ── TWO-COLUMN LAYOUT ── */
.faq-layout-columns {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 860px) {
  .faq-layout-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ══════════════════════
     LEFT PANEL
  ══════════════════════ */
.faq-left-panel {
  position: sticky;
  top: 32px;
  animation: faq-rise 0.6s ease both;
}

.faq-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbf1ff;
  border: 1px solid #f5c6c6;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.faq-eyebrow-tag i {
  font-size: 11px;
  color: var(--blue);
}

.faq-main-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--faq-navy);
  line-height: 1.18;
  margin-bottom: 18px;
}

.faq-headline-italic {
  color: var(--blue);
  font-style: italic;
}

.faq-left-description {
  font-size: 14.5px;
  color: var(--faq-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}


.faq-filter-pill-ordering,
.faq-filter-pill-shipping,
.faq-filter-pill-technical,
.faq-filter-pill-payment,
.faq-filter-pill-all {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  color: var(--faq-muted);
  background: transparent;
}

.faq-filter-pill-all {
  background: var(--faq-navy);
  color: #fff;
  border-color: var(--faq-navy);
}

.faq-filter-pill-ordering:hover,
.faq-filter-pill-shipping:hover,
.faq-filter-pill-technical:hover,
.faq-filter-pill-payment:hover {
  background: var(--faq-soft);
  border-color: var(--faq-border);
  color: var(--faq-navy);
}

.faq-filter-pill-ordering i,
.faq-filter-pill-shipping i,
.faq-filter-pill-technical i,
.faq-filter-pill-payment i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--faq-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--faq-muted);
  transition: all 0.2s ease;
}

.faq-filter-pill-all i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}

/* Contact card */
.faq-contact-nudge {
  background: linear-gradient(135deg, var(--faq-navy) 0%, #1a3260 100%);
  border-radius: 16px;
  padding: 26px 24px;
  color: #fff;
}

.faq-nudge-icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--faq-gold);
  margin-bottom: 14px;
}

.faq-nudge-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 7px;
}

.faq-nudge-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 18px;
}

.faq-nudge-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-nudge-cta:hover {
  background: #a93226;
  transform: translateY(-2px);
}

/* ══════════════════════
     RIGHT PANEL — ACCORDION
  ══════════════════════ */
.faq-accordion-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: faq-rise 0.6s 0.15s ease both;
}

/* Each item has a completely unique class */

/* ── Item 1 ── */
.faq-item-bulk-orders {
  background: var(--faq-white);
  border-radius: 14px;
  border: 1.5px solid var(--faq-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-bulk-orders.faq-open {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.08);
}

.faq-trigger-bulk-orders {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}

.faq-trigger-bulk-orders::-webkit-details-marker {
  display: none;
}

.faq-cat-icon-bulk-orders {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-item-bulk-orders.faq-open .faq-cat-icon-bulk-orders {
  background: var(--blue);
  color: #fff;
}

.faq-question-text-bulk-orders {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--faq-navy);
  line-height: 1.4;
}

.faq-chevron-bulk-orders {
  font-size: 12px;
  color: var(--faq-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-bulk-orders.faq-open .faq-chevron-bulk-orders {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer-bulk-orders {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-bulk-orders.faq-open .faq-answer-bulk-orders {
  max-height: 300px;
}

.faq-answer-inner-bulk-orders {
  padding: 0 22px 22px 76px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

.faq-answer-inner-bulk-orders a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

/* ── Item 2 ── */
.faq-item-min-quantity {
  background: var(--faq-white);
  border-radius: 14px;
  border: 1.5px solid var(--faq-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-min-quantity.faq-open {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.08);
}

.faq-trigger-min-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-cat-icon-min-quantity {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--faq-gold);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-item-min-quantity.faq-open .faq-cat-icon-min-quantity {
  background: var(--faq-gold);
  color: #fff;
}

.faq-question-text-min-quantity {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--faq-navy);
  line-height: 1.4;
}

.faq-chevron-min-quantity {
  font-size: 12px;
  color: var(--faq-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-min-quantity.faq-open .faq-chevron-min-quantity {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer-min-quantity {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-min-quantity.faq-open .faq-answer-min-quantity {
  max-height: 300px;
}

.faq-answer-inner-min-quantity {
  padding: 0 22px 22px 76px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Item 3 ── */
.faq-item-delivery-time {
  background: var(--faq-white);
  border-radius: 14px;
  border: 1.5px solid var(--faq-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-delivery-time.faq-open {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.08);
}

.faq-trigger-delivery-time {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-cat-icon-delivery-time {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #27ae60;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-item-delivery-time.faq-open .faq-cat-icon-delivery-time {
  background: #27ae60;
  color: #fff;
}

.faq-question-text-delivery-time {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--faq-navy);
  line-height: 1.4;
}

.faq-chevron-delivery-time {
  font-size: 12px;
  color: var(--faq-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-delivery-time.faq-open .faq-chevron-delivery-time {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer-delivery-time {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-delivery-time.faq-open .faq-answer-delivery-time {
  max-height: 300px;
}

.faq-answer-inner-delivery-time {
  padding: 0 22px 22px 76px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Item 4 ── */
.faq-item-export-orders {
  background: var(--faq-white);
  border-radius: 14px;
  border: 1.5px solid var(--faq-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-export-orders.faq-open {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.08);
}

.faq-trigger-export-orders {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-cat-icon-export-orders {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #1a73e8;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-item-export-orders.faq-open .faq-cat-icon-export-orders {
  background: #1a73e8;
  color: #fff;
}

.faq-question-text-export-orders {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--faq-navy);
  line-height: 1.4;
}

.faq-chevron-export-orders {
  font-size: 12px;
  color: var(--faq-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-export-orders.faq-open .faq-chevron-export-orders {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer-export-orders {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-export-orders.faq-open .faq-answer-export-orders {
  max-height: 300px;
}

.faq-answer-inner-export-orders {
  padding: 0 22px 22px 76px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Item 5 ── */
.faq-item-warranty-policy {
  background: var(--faq-white);
  border-radius: 14px;
  border: 1.5px solid var(--faq-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-warranty-policy.faq-open {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.08);
}

.faq-trigger-warranty-policy {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-cat-icon-warranty-policy {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #7c3aed;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-item-warranty-policy.faq-open .faq-cat-icon-warranty-policy {
  background: #7c3aed;
  color: #fff;
}

.faq-question-text-warranty-policy {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--faq-navy);
  line-height: 1.4;
}

.faq-chevron-warranty-policy {
  font-size: 12px;
  color: var(--faq-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-warranty-policy.faq-open .faq-chevron-warranty-policy {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer-warranty-policy {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-warranty-policy.faq-open .faq-answer-warranty-policy {
  max-height: 300px;
}

.faq-answer-inner-warranty-policy {
  padding: 0 22px 22px 76px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Item 6 ── */
.faq-item-payment-methods {
  background: var(--faq-white);
  border-radius: 14px;
  border: 1.5px solid var(--faq-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-payment-methods.faq-open {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.08);
}

.faq-trigger-payment-methods {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-cat-icon-payment-methods {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-item-payment-methods.faq-open .faq-cat-icon-payment-methods {
  background: var(--blue);
  color: #fff;
}

.faq-question-text-payment-methods {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--faq-navy);
  line-height: 1.4;
}

.faq-chevron-payment-methods {
  font-size: 12px;
  color: var(--faq-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-payment-methods.faq-open .faq-chevron-payment-methods {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer-payment-methods {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-payment-methods.faq-open .faq-answer-payment-methods {
  max-height: 300px;
}

.faq-answer-inner-payment-methods {
  padding: 0 22px 22px 76px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Item 7 ── */
.faq-item-oem-parts {
  background: var(--faq-white);
  border-radius: 14px;
  border: 1.5px solid var(--faq-border);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item-oem-parts.faq-open {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.08);
}

.faq-trigger-oem-parts {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-cat-icon-oem-parts {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fef9e7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #d4a017;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-item-oem-parts.faq-open .faq-cat-icon-oem-parts {
  background: #d4a017;
  color: #fff;
}

.faq-question-text-oem-parts {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--faq-navy);
  line-height: 1.4;
}

.faq-chevron-oem-parts {
  font-size: 12px;
  color: var(--faq-muted);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item-oem-parts.faq-open .faq-chevron-oem-parts {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer-oem-parts {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-oem-parts.faq-open .faq-answer-oem-parts {
  max-height: 300px;
}

.faq-answer-inner-oem-parts {
  padding: 0 22px 22px 76px;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 300;
}

/* ── ANSWER HIGHLIGHT CHIP ── */
.faq-highlight-chip-delivery,
.faq-highlight-chip-moq,
.faq-highlight-chip-warranty,
.faq-highlight-chip-export {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0ef;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ── ANIMATION ── */
@keyframes faq-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ══════════════════════════════
     FOOTER ROOT
  ══════════════════════════════ */
.ftr-root {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

/* Decorative grid overlay */
.ftr-root::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Red glow top-left */
.ftr-root::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── TOP NEWSLETTER BAND ── */
.ftr-newsletter-band {
  background: var(--blue-mid);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.ftr-newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.ftr-newsletter-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ftr-newsletter-icon-wrap {
  width: 48px;
  height: 48px;
  background: #2b78c0c9;
  border: 1px solid rgba(43, 95, 192, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.ftr-newsletter-label-main {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1.3;
}

.ftr-newsletter-label-sub {
  font-size: 12.5px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.ftr-newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.ftr-newsletter-form:focus-within {
  border-color: rgba(192, 57, 43, 0.5);
}

.ftr-newsletter-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: var(--white);
  width: 260px;
}

.ftr-newsletter-input::placeholder {
  color: var(--muted);
}

.ftr-newsletter-submit {
  background: var(--blue);
  border: none;
  padding: 12px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.ftr-newsletter-submit:hover {
  background: var(--blue-hover);
}

/* ── MAIN BODY ── */
.ftr-main-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .ftr-main-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .ftr-main-body {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
  }
}

/* ── BRAND COLUMN ── */
.ftr-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ftr-brand-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ftr-brand-logo-mark {
  width: 46px;
  height: 46px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.ftr-brand-name-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.ftr-brand-name-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.ftr-brand-tagline {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  font-weight: 300;
  max-width: 300px;
}

/* Certifications */
.ftr-cert-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ftr-cert-badge-gst,
.ftr-cert-badge-iso,
.ftr-cert-badge-msme {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--blue-pale);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.ftr-cert-badge-gst i,
.ftr-cert-badge-iso i,
.ftr-cert-badge-msme i {
  color: var(--faq-gold);
  font-size: 10px;
}

/* Social icons */
.ftr-social-row {
  display: flex;
  gap: 10px;
}

.ftr-social-link-whatsapp,
.ftr-social-link-facebook,
.ftr-social-link-instagram,
.ftr-social-link-linkedin,
.ftr-social-link-youtube {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.22s ease;
}

.ftr-social-link-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: translateY(-3px);
}

.ftr-social-link-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  transform: translateY(-3px);
}

.ftr-social-link-instagram:hover {
  background: #E1306C;
  border-color: #E1306C;
  color: #fff;
  transform: translateY(-3px);
}

.ftr-social-link-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
  transform: translateY(-3px);
}

.ftr-social-link-youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
  transform: translateY(-3px);
}

/* ── LINK COLUMNS ── */
.ftr-links-col-company,
.ftr-links-col-products,
.ftr-links-col-support {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ftr-col-label-company,
.ftr-col-label-products,
.ftr-col-label-support {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faq-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.ftr-col-label-company i,
.ftr-col-label-products i,
.ftr-col-label-support i {
  font-size: 12px;
}

/* Nav lists */
.ftr-navlist-company,
.ftr-navlist-products,
.ftr-navlist-support {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
}

/* Company links */
.ftr-navlink-about,
.ftr-navlink-team,
.ftr-navlink-careers,
.ftr-navlink-blog,
.ftr-navlink-press {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 400;
  padding: 6px 0;
  transition: color 0.2s ease, gap 0.2s ease;
}

.ftr-navlink-about:hover,
.ftr-navlink-team:hover,
.ftr-navlink-careers:hover,
.ftr-navlink-blog:hover,
.ftr-navlink-press:hover {
  color: var(--white);
  gap: 14px;
}

.ftr-navlink-about i,
.ftr-navlink-team i,
.ftr-navlink-careers i,
.ftr-navlink-blog i,
.ftr-navlink-press i {
  font-size: 11px;
  color: var(--muted);
  width: 14px;
  transition: color 0.2s ease;
}

.ftr-navlink-about:hover i,
.ftr-navlink-team:hover i,
.ftr-navlink-careers:hover i,
.ftr-navlink-blog:hover i,
.ftr-navlink-press:hover i {
  color: var(--blue);
}

/* Product links */
.ftr-navlink-compressors,
.ftr-navlink-condensers,
.ftr-navlink-spareparts,
.ftr-navlink-refrigerants,
.ftr-navlink-controls,
.ftr-navlink-export {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 400;
  padding: 6px 0;
  transition: color 0.2s ease, gap 0.2s ease;
}

.ftr-navlink-compressors:hover,
.ftr-navlink-condensers:hover,
.ftr-navlink-spareparts:hover,
.ftr-navlink-refrigerants:hover,
.ftr-navlink-controls:hover,
.ftr-navlink-export:hover {
  color: var(--white);
  gap: 14px;
}

.ftr-navlink-compressors i,
.ftr-navlink-condensers i,
.ftr-navlink-spareparts i,
.ftr-navlink-refrigerants i,
.ftr-navlink-controls i,
.ftr-navlink-export i {
  font-size: 11px;
  color: var(--muted);
  width: 14px;
  transition: color 0.2s ease;
}

.ftr-navlink-compressors:hover i,
.ftr-navlink-condensers:hover i,
.ftr-navlink-spareparts:hover i,
.ftr-navlink-refrigerants:hover i,
.ftr-navlink-controls:hover i,
.ftr-navlink-export:hover i {
  color: var(--blue);
}

/* Support links */
.ftr-navlink-contact,
.ftr-navlink-faq,
.ftr-navlink-shipping,
.ftr-navlink-warranty,
.ftr-navlink-returns {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 400;
  padding: 6px 0;
  transition: color 0.2s ease, gap 0.2s ease;
}

.ftr-navlink-contact:hover,
.ftr-navlink-faq:hover,
.ftr-navlink-shipping:hover,
.ftr-navlink-warranty:hover,
.ftr-navlink-returns:hover {
  color: var(--white);
  gap: 14px;
}

.ftr-navlink-contact i,
.ftr-navlink-faq i,
.ftr-navlink-shipping i,
.ftr-navlink-warranty i,
.ftr-navlink-returns i {
  font-size: 11px;
  color: var(--muted);
  width: 14px;
  transition: color 0.2s ease;
}

.ftr-navlink-contact:hover i,
.ftr-navlink-faq:hover i,
.ftr-navlink-shipping:hover i,
.ftr-navlink-warranty:hover i,
.ftr-navlink-returns:hover i {
  color: var(--blue);
}

/* ── CONTACT STRIP ── */
.ftr-contact-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.ftr-contact-tile-phone,
.ftr-contact-tile-email,
.ftr-contact-tile-address,
.ftr-contact-tile-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  flex: 1;
  min-width: 200px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ftr-contact-tile-phone:hover,
.ftr-contact-tile-email:hover,
.ftr-contact-tile-address:hover,
.ftr-contact-tile-hours:hover {
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.3);
}

.ftr-tile-icon-phone,
.ftr-tile-icon-email,
.ftr-tile-icon-address,
.ftr-tile-icon-hours {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.ftr-tile-icon-phone {
  background: rgba(192, 57, 43, 0.15);
  color: var(--blue);
}

.ftr-tile-icon-email {
  background: rgba(226, 169, 75, 0.15);
  color: var(--faq-gold);
}

.ftr-tile-icon-address {
  background: rgba(26, 115, 232, 0.15);
  color: #4a9eff;
}

.ftr-tile-icon-hours {
  background: rgba(39, 174, 96, 0.15);
  color: #27ae60;
}

.ftr-tile-label-phone,
.ftr-tile-label-email,
.ftr-tile-label-address,
.ftr-tile-label-hours {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.ftr-tile-value-phone,
.ftr-tile-value-email,
.ftr-tile-value-address,
.ftr-tile-value-hours {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  display: block;
}

/* ── BOTTOM BAR ── */
.ftr-bottom-bar {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.ftr-bottom-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ftr-copyright-text {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ftr-copyright-text i {
  color: var(--blue);
  font-size: 11px;
}

.ftr-copyright-brand-name {
  color: var(--white);
  font-weight: 600;
}

.ftr-legal-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ftr-legal-link-privacy,
.ftr-legal-link-terms,
.ftr-legal-link-cookies,
.ftr-legal-link-sitemap {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  padding: 3px 10px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.ftr-legal-link-privacy:hover,
.ftr-legal-link-terms:hover,
.ftr-legal-link-cookies:hover,
.ftr-legal-link-sitemap:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.ftr-legal-dot {
  width: 3px;
  height: 3px;
  background: var(--muted);
  border-radius: 50%;
  opacity: 0.4;
}

.ftr-made-with {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ftr-made-with i {
  color: var(--blue);
  animation: ftr-heartbeat 1.4s ease infinite;
}

@keyframes ftr-heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.25);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.15);
  }

  56% {
    transform: scale(1);
  }
}

@media (max-width: 700px) {
  .ftr-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ftr-newsletter-form {
    width: 100%;
  }

  .ftr-newsletter-input {
    width: 100%;
  }

  .ftr-bottom-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ftr-contact-strip {
    padding: 24px;
  }

  .ftr-main-body {
    padding: 40px 24px 32px;
  }
}

/* ═══════════════════════════════
     FLOATING STACK — right side
  ═══════════════════════════════ */
.flb-stack {
  position: fixed;
  right: 24px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}

/* ── SHARED BASE ── */
.flb-btn-whatsapp,
.flb-btn-call,
.flb-btn-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
}

/* ── TOOLTIP shared style ── */
.flb-btn-whatsapp::before,
.flb-btn-call::before,
.flb-btn-top::before {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #0f1f3d;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
}

/* Tooltip arrow */
.flb-btn-whatsapp::after,
.flb-btn-call::after,
.flb-btn-top::after {
  content: '';
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  border: 5px solid transparent;
  border-left-color: #0f1f3d;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.flb-btn-whatsapp:hover::before,
.flb-btn-call:hover::before,
.flb-btn-top:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.flb-btn-whatsapp:hover::after,
.flb-btn-call:hover::after,
.flb-btn-top:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── ICONS inside buttons ── */
.flb-btn-whatsapp i,
.flb-btn-call i,
.flb-btn-top i {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

/* ── WHATSAPP ── */
.flb-btn-whatsapp {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.flb-btn-whatsapp:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.flb-btn-whatsapp:active {
  transform: scale(0.96);
}

/* Pulse ring on WhatsApp */
.flb-whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: flb-pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes flb-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ── CALL ── */
.flb-btn-call {
  background: #c0392b;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.42);
}

.flb-btn-call:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 57, 43, 0.52);
}

.flb-btn-call:active {
  transform: scale(0.96);
}

/* Shake on call icon */
.flb-btn-call i {
  animation: flb-phone-shake 3s ease infinite;
}

@keyframes flb-phone-shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(0deg);
  }

  84% {
    transform: rotate(-18deg);
  }

  88% {
    transform: rotate(18deg);
  }

  92% {
    transform: rotate(-14deg);
  }

  96% {
    transform: rotate(14deg);
  }
}

/* ── GO TO TOP ── */
.flb-btn-top {
  background: var(--blue-light);
  box-shadow: 0 6px 20px rgba(15, 31, 61, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease,
    box-shadow 0.25s ease;
}

.flb-btn-top.flb-top-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.flb-btn-top:hover {
  transform: scale(1.12) translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(15, 31, 61, 0.45);
  background: var(--blue-dk);
}

.flb-btn-top:active {
  transform: scale(0.96) !important;
}

/* ── DIVIDER between call and top ── */
.flb-stack-divider {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(15, 31, 61, 0.2), transparent);
  margin: -4px auto;
  align-self: center;
}

/* ════════════════════════════════════════
    CONTACT TWO — TOP FORM SECTION
════════════════════════════════════════ */
.contact-two {
  padding: 100px 0 0;
  background: #e0f3ff;
  position: relative;
  overflow: hidden;
}

/* subtle diagonal stripe background */
.contact-two::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(202, 68, 69, .025) 40px,
      rgba(202, 68, 69, .025) 41px);
  pointer-events: none;
}

/* ── Section header ── */
.contact-two__header {
  text-align: center;
  margin-bottom: 54px;
}

.contact-two__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-dk);
  margin-bottom: 14px;
}

.contact-two__tagline i {
  font-size: .9rem;
}

.contact-two__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--c2-dark);
  letter-spacing: .02em;
}

.contact-two__title span {
  color: var(--blue-dk);
}

/* ── Form ── */
.contact-two__form {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-two__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-two__form-control {
  position: relative;
}

.contact-two__form-control--full {
  grid-column: 1 / -1;
}

.contact-two__form-control i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--blue-dk);
  font-size: .9rem;
  pointer-events: none;
  z-index: 2;
}

.contact-two__form-control--textarea i {
  top: 20px;
  transform: none;
}

.contact-two__form-control input,
.contact-two__form-control select,
.contact-two__form-control textarea {
  width: 100%;
  padding: 16px 18px 16px 46px;
  background: #fff;
  border: 1px solid #e2ddd8;
  border-radius: 0;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  color: var(--c2-dark);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-two__form-control input::placeholder,
.contact-two__form-control textarea::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.contact-two__form-control select {
  color: var(--muted);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CA4445' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.contact-two__form-control select.has-value {
  color: var(--c2-dark);
}

.contact-two__form-control textarea {
  height: 150px;
  resize: none;
}

.contact-two__form-control input:focus,
.contact-two__form-control select:focus,
.contact-two__form-control textarea:focus {
  border-color: var(--blue-dk);
  box-shadow: 0 0 0 3px rgba(var(--blue-dk-rgb), .10);
}

/* submit button */
.contact-two__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  background: var(--blue-dk);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  z-index: 1;
}

.contact-two__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c2-dark);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  z-index: -1;
}

.contact-two__submit:hover::before {
  transform: translateX(0);
}

.contact-two__submit:hover {
  background: var(--c2-dark);
}

.contact-two__submit i {
  font-size: .9rem;
}

/* ════════════════════════════════════════
  CONTACT TWO — BOTTOM INFO STRIP
════════════════════════════════════════ */
.contact-two-bottom {
  padding-bottom: 0;
  margin-top: 80px;
}

.contact-two-bottom__inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 auto;
}

/* top row: title panel + phone panel */
.contact-two-bottom__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--grad);
}

@media (max-width: 767px) {
  .contact-two-bottom__top {
    grid-template-columns: 1fr;
  }
}

/* left red panel */
.contact-two-bottom__top-title {
  background: var(--blue-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

/* noise texture on red panel */
.contact-two-bottom__top-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}

.contact-two-bottom__top-title p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* right phone panel */
.contact-two-bottom__top-phone {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border2);
}

.contact-two-bottom__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dk);
  color: var(--white);
  font-size: 1.1rem;
  transition: all .35s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-two-bottom__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  z-index: -1;
}

.contact-two-bottom__top-phone:hover .contact-two-bottom__icon {
  color: var(--c2-dark);
}

.contact-two-bottom__top-phone:hover .contact-two-bottom__icon::after {
  transform: scale(1);
}

.contact-two-bottom__subtitle {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.contact-two-bottom__text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.contact-two-bottom__text a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.contact-two-bottom__text a:hover {
  color: var(--blue-dk);
}

/* bottom row: email / address / social */
.contact-two-bottom__list-wrap {
  background: var(--grad);
  padding: 32px 40px;
  max-width: 950px;
  margin: 0 auto;
}

.contact-two-bottom__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-two-bottom__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 200px;
}

.contact-two-bottom__list-item--social {
  justify-content: flex-end;
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .contact-two-bottom__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .contact-two-bottom__list-item--social {
    justify-content: flex-start;
  }
}

.contact-two-bottom__list-item:hover .contact-two-bottom__icon {
  color: var(--c2-dark);
}

.contact-two-bottom__list-item:hover .contact-two-bottom__icon::after {
  transform: scale(1);
}

.contact-two-bottom__social {
  display: flex;
  gap: 10px;
}

.contact-two-bottom__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  text-decoration: none;
  transition: background .25s, color .25s;
}

.contact-two-bottom__social a:hover {
  background: var(--blue-dk);
  color: var(--white);
}

/* ── Map ── */
.contact-two-map {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .contact-two {
    padding: 70px 0 0;
  }

  .contact-two__form-grid {
    grid-template-columns: 1fr;
  }

  .contact-two__form-control--full {
    grid-column: 1;
  }

  .contact-two-bottom__top-phone {
    padding: 28px 24px;
  }

  .contact-two-bottom__list-wrap {
    padding: 28px 24px;
  }

  .contact-two-map {
    height: 300px;
  }
}

.about_two-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about_two-title h1 {
    color: #2196F3;
    font-size: 2.5rem;
    font-weight: bold;
}

.about_two-subtitle h2 {
    font-size: 1.8rem;
    color: #333;
}

.about_two-floating-image {
    float: left;
    width: 45%;
    margin: 0 30px 20px 0;
}

.about_two-floating-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about_two-content-text {
    text-align: justify;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.about_two-content-text p {
    margin-bottom: 20px;
}

.about_two-highlight {
    color: #000;
    font-weight: 600;
}

.about_two-content-text::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .about_two-floating-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}


.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 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(--blue);
    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(--blue);
    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(--blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--blue);
}

.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;
    }
}

.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-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 60, 0.82) 0%,
    rgba(29, 78, 216, 0.55) 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, var(--phero-blue), #60a5fa, var(--phero-blue));
  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: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── DEMO: show multiple examples ── */
body {
  margin: 0;
  background: #f0f6ff;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 28px 0 14px;
}