/* =========================================================
   ODEEX — Home Cleaning Products
   Main Stylesheet
   Structure: Tokens > Base > Layout > Components > Sections > Utilities > Responsive
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette (derived from logo: bright blue / deep blue gradient) */
  --odx-dark: #07234a; /* deep blue - headings, dark sections */
  --odx-dark-2: #0a2e5c;
  --odx-primary: #0b5cc5; /* bright/primary blue */
  --odx-primary-2: #1373e6;
  --odx-light: #5eb0f0; /* light blue */
  --odx-cyan: #38d6e0; /* glossy highlight accent */
  --odx-bg-tint: #eaf4fe; /* very light blue background */
  --odx-bg-tint-2: #f5faff;
  --odx-white: #ffffff;
  --odx-text: #1a2b3c;
  --odx-text-soft: #56697d;
  --odx-border: #dcebfb;

  --odx-gradient-hero: linear-gradient(
    135deg,
    var(--odx-dark) 0%,
    var(--odx-primary) 55%,
    var(--odx-light) 100%
  );
  --odx-gradient-btn: linear-gradient(
    135deg,
    var(--odx-primary) 0%,
    var(--odx-light) 100%
  );
  --odx-gradient-glow: linear-gradient(
    120deg,
    rgba(56, 214, 224, 0.25),
    rgba(11, 92, 197, 0)
  );

  --odx-radius-sm: 10px;
  --odx-radius: 18px;
  --odx-radius-lg: 28px;

  --odx-shadow-sm: 0 6px 18px rgba(7, 35, 74, 0.08);
  --odx-shadow: 0 14px 40px rgba(7, 35, 74, 0.12);
  --odx-shadow-lg: 0 24px 60px rgba(7, 35, 74, 0.18);

  --odx-font-display: "Poppins", "Segoe UI", sans-serif;
  --odx-font-body: "Inter", "Segoe UI", sans-serif;

  --odx-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. BASE ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--odx-font-body);
  color: var(--odx-text);
  background: var(--odx-white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--odx-font-display);
  color: var(--odx-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--odx-text-soft);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--odx-cyan);
  color: var(--odx-dark);
}

/* focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--odx-cyan);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.section-tint {
  background: var(--odx-bg-tint-2);
}
.section-tint-alt {
  background: var(--odx-bg-tint);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--odx-primary);
  background: var(--odx-bg-tint);
  border: 1px solid var(--odx-border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow i {
  color: var(--odx-cyan);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--odx-text-soft);
  max-width: 640px;
}
.text-gradient-blue {
  background: var(--odx-gradient-btn);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 3. BUTTONS ---------- */
.btn-odeex-primary,
.btn-odeex-outline,
.btn-odeex-white,
.btn-odeex-call,
.btn-odeex-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: var(--odx-transition);
  white-space: nowrap;
}

.btn-odeex-primary {
  background: var(--odx-gradient-btn);
  color: var(--odx-white);
  box-shadow: var(--odx-shadow-sm);
}
.btn-odeex-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--odx-shadow);
  color: var(--odx-white);
}

.btn-odeex-outline {
  background: transparent;
  color: var(--odx-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-odeex-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--odx-white);
  transform: translateY(-3px);
}

.btn-odeex-white {
  background: var(--odx-white);
  color: var(--odx-primary);
}
.btn-odeex-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--odx-shadow);
  color: var(--odx-dark);
}

.btn-odeex-call {
  background: var(--odx-dark);
  color: var(--odx-white);
}
.btn-odeex-call:hover {
  background: var(--odx-primary);
  transform: translateY(-3px);
  color: var(--odx-white);
}

.btn-odeex-whatsapp {
  background: #25d366;
  color: var(--odx-white);
}
.btn-odeex-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-3px);
  color: var(--odx-white);
}

.btn-sm-pill {
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-block-mobile {
  width: 100%;
}

/* ---------- 4. HEADER / NAVIGATION ---------- */
.odx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--odx-border);
  transition: var(--odx-transition);
}
.odx-header.is-scrolled {
  box-shadow: var(--odx-shadow-sm);
}

.odx-header .navbar {
  padding: 14px 0;
}

.odx-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.odx-logo img {
  height: 46px;
  width: auto;
}

.odx-nav-link {
  position: relative;
  font-weight: 600;
  color: var(--odx-dark);
  padding: 10px 16px !important;
  font-size: 0.96rem;
}
.odx-nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--odx-gradient-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--odx-transition);
}
.odx-nav-link:hover::after,
.odx-nav-link.active::after {
  transform: scaleX(1);
}
.odx-nav-link.active {
  color: var(--odx-primary);
}

.odx-toggler {
  border: none;
  background: var(--odx-gradient-btn);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

/* ---------- 5. MOBILE SIDE NAV ---------- */
.odx-side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 84vw);
  height: 100vh;
  background: var(--odx-gradient-hero);
  z-index: 2000;
  padding: 30px 26px;
  transform: translateX(-105%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.odx-side-nav.is-open {
  transform: translateX(0);
}

.odx-side-nav .odx-close-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.odx-side-nav .odx-side-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.odx-side-nav ul {
  list-style: none;
  padding: 0;
  margin: 36px 0;
}
.odx-side-nav ul li {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s ease;
}
.odx-side-nav.is-open ul li {
  opacity: 1;
  transform: translateX(0);
}
.odx-side-nav.is-open ul li:nth-child(1) {
  transition-delay: 0.08s;
}
.odx-side-nav.is-open ul li:nth-child(2) {
  transition-delay: 0.14s;
}
.odx-side-nav.is-open ul li:nth-child(3) {
  transition-delay: 0.2s;
}
.odx-side-nav.is-open ul li:nth-child(4) {
  transition-delay: 0.26s;
}
.odx-side-nav.is-open ul li:nth-child(5) {
  transition-delay: 0.32s;
}

.odx-side-nav ul li a {
  display: block;
  color: #fff;
  font-family: var(--odx-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.odx-side-nav ul li a i {
  width: 26px;
  color: var(--odx-cyan);
}

.odx-side-contact {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.odx-side-contact a {
  color: #fff;
  font-weight: 600;
}

.odx-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 16, 36, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
.odx-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

body.odx-noscroll {
  overflow: hidden;
}

/* ---------- 6. HERO ---------- */
.odx-hero {
  position: relative;
  background: var(--odx-gradient-hero);
  overflow: hidden;
  padding: 40px 0 110px;
  color: #fff;
}
.odx-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(56, 214, 224, 0.35),
    transparent 70%
  );
  top: -220px;
  right: -180px;
  border-radius: 50%;
}
.odx-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  bottom: -220px;
  left: -150px;
  border-radius: 50%;
}
.odx-hero .container {
  position: relative;
  z-index: 2;
}

.odx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.odx-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.odx-hero p.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 520px;
}

.odx-hero-visual {
  position: relative;
}
.odx-hero-visual img {
  border-radius: var(--odx-radius-lg);
  box-shadow: var(--odx-shadow-lg);
  position: relative;
  z-index: 2;
}
.odx-hero-floating {
  position: absolute;
  background: #fff;
  color: var(--odx-dark);
  padding: 14px 20px;
  border-radius: var(--odx-radius);
  box-shadow: var(--odx-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3;
  animation: odxFloat 4s ease-in-out infinite;
}
.odx-hero-floating.card-1 {
  top: 8%;
  left: -6%;
}
.odx-hero-floating.card-2 {
  bottom: 6%;
  right: -6%;
  animation-delay: 0.6s;
}
.odx-hero-floating i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--odx-gradient-btn);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes odxFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.odx-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 60px;
}
.odx-scroll-cue .line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

/* ---------- 7. WAVE DIVIDER ---------- */
.odx-wave {
  display: block;
  width: 100%;
  line-height: 0;
}
.odx-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ---------- 8. BRAND INTRO ---------- */
.odx-intro-img {
  position: relative;
}
.odx-intro-img img {
  border-radius: var(--odx-radius-lg);
  box-shadow: var(--odx-shadow);
}
.odx-intro-badge {
  position: absolute;
  bottom: -22px;
  left: 24px;
  background: #fff;
  padding: 14px 22px;
  border-radius: var(--odx-radius);
  box-shadow: var(--odx-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--odx-dark);
}
.odx-intro-badge i {
  color: var(--odx-primary);
  font-size: 1.2rem;
}

.odx-check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.odx-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--odx-text);
  font-weight: 500;
}
.odx-check-list li i {
  color: var(--odx-primary);
  background: var(--odx-bg-tint);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- 9. CATEGORY CARDS ---------- */
.odx-cat-card {
  position: relative;
  border-radius: var(--odx-radius);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--odx-shadow-sm);
  transition: var(--odx-transition);
}
.odx-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.odx-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 35, 74, 0.88) 0%,
    rgba(7, 35, 74, 0.15) 60%,
    transparent 100%
  );
  z-index: 1;
}
.odx-cat-card .odx-cat-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
}
.odx-cat-card .odx-cat-body h5 {
  color: #fff;
  margin-bottom: 4px;
}
.odx-cat-card .odx-cat-body span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.odx-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--odx-shadow);
}
.odx-cat-card:hover img {
  transform: scale(1.08);
}
.odx-cat-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

/* ---------- 10. PRODUCT CARDS ---------- */
.odx-product-card {
  background: #fff;
  border-radius: var(--odx-radius);
  overflow: hidden;
  box-shadow: var(--odx-shadow-sm);
  border: 1px solid var(--odx-border);
  transition: var(--odx-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.odx-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--odx-shadow);
}

.odx-product-thumb {
  position: relative;
  overflow: hidden;
  background: var(--odx-bg-tint);
  aspect-ratio: 4 / 4.2;
}
.odx-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.odx-product-card:hover .odx-product-thumb img {
  transform: scale(1.07);
}

.odx-product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--odx-gradient-btn);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}

.odx-product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.odx-product-body h5 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.odx-product-body p.desc {
  font-size: 0.88rem;
  margin-bottom: 12px;
  flex-grow: 1;
}

.odx-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--odx-text-soft);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--odx-border);
}
.odx-product-meta span strong {
  color: var(--odx-dark);
}

.odx-product-actions {
  display: flex;
  gap: 10px;
}
.odx-product-actions .btn-odeex-call,
.odx-product-actions .btn-odeex-whatsapp {
  flex: 1;
  padding: 11px 12px;
  font-size: 0.82rem;
}

/* ---------- 11. FEATURE / WHY CHOOSE CARDS ---------- */
.odx-feature-card {
  background: #fff;
  border: 1px solid var(--odx-border);
  border-radius: var(--odx-radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--odx-transition);
}
.odx-feature-card:hover {
  box-shadow: var(--odx-shadow);
  transform: translateY(-6px);
  border-color: transparent;
}
.odx-feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--odx-gradient-btn);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.odx-feature-card h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.odx-feature-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ---------- 12. PROMO BANNERS ---------- */
.odx-banner {
  position: relative;
  border-radius: var(--odx-radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  color: #fff;
}
.odx-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.odx-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7, 35, 74, 0.92),
    rgba(11, 92, 197, 0.75)
  );
  z-index: 1;
}
.odx-banner-content {
  position: relative;
  z-index: 2;
  padding: 50px;
}
.odx-banner h2 {
  color: #fff;
}
.odx-banner p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- 13. SHOWCASE ---------- */
.odx-showcase-item {
  position: relative;
  border-radius: var(--odx-radius);
  overflow: hidden;
  box-shadow: var(--odx-shadow-sm);
}
.odx-showcase-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.odx-showcase-item:hover img {
  transform: scale(1.06);
}
.odx-showcase-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--odx-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--odx-shadow-sm);
}

/* ---------- 14. STATS / TRUST BADGES ---------- */
.odx-stat-box {
  text-align: center;
  padding: 18px;
  border-radius: var(--odx-radius-sm);
  background: var(--odx-bg-tint);
}
.odx-stat-box .num {
  font-family: var(--odx-font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--odx-primary);
}
.odx-stat-box .label {
  font-size: 0.78rem;
  color: var(--odx-text-soft);
}

/* ---------- 15. STEPS / HOW IT WORKS ---------- */
.odx-step-card {
  background: #fff;
  border: 1px solid var(--odx-border);
  border-radius: var(--odx-radius);
  padding: 30px 24px;
  height: 100%;
  position: relative;
  transition: var(--odx-transition);
}
.odx-step-card:hover {
  box-shadow: var(--odx-shadow);
  transform: translateY(-6px);
}
.odx-step-num {
  font-family: var(--odx-font-display);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--odx-bg-tint);
  -webkit-text-stroke: 1.4px var(--odx-primary);
  margin-bottom: 14px;
  display: block;
}
.odx-step-card h5 {
  font-size: 1rem;
}
.odx-step-card p {
  font-size: 0.86rem;
  margin-bottom: 0;
}
.odx-step-connector {
  position: absolute;
  top: 40px;
  right: -18px;
  color: var(--odx-border);
  font-size: 1.3rem;
  display: none;
}
@media (min-width: 992px) {
  .odx-step-connector.d-lg-block {
    display: block;
  }
}

/* ---------- 16. GALLERY ---------- */
.odx-gallery-item {
  position: relative;
  border-radius: var(--odx-radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--odx-shadow-sm);
}
.odx-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform 0.6s ease;
}
.odx-gallery-item .odx-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 35, 74, 0.85),
    rgba(7, 35, 74, 0) 55%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  opacity: 0;
  transition: var(--odx-transition);
}
.odx-gallery-item:hover .odx-gallery-overlay {
  opacity: 1;
}
.odx-gallery-item:hover img {
  transform: scale(1.1);
}
.odx-gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
}
.odx-gallery-overlay i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.odx-filter-btn {
  border: 1px solid var(--odx-border);
  background: #fff;
  color: var(--odx-text);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--odx-transition);
}
.odx-filter-btn.active,
.odx-filter-btn:hover {
  background: var(--odx-gradient-btn);
  color: #fff;
  border-color: transparent;
}

/* Lightbox */
.odx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(4, 16, 36, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.odx-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.odx-lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 12px;
  box-shadow: var(--odx-shadow-lg);
}
.odx-lightbox-close,
.odx-lightbox-prev,
.odx-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--odx-transition);
}
.odx-lightbox-close:hover,
.odx-lightbox-prev:hover,
.odx-lightbox-next:hover {
  background: var(--odx-primary);
}
.odx-lightbox-close {
  top: 24px;
  right: 24px;
}
.odx-lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.odx-lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- 17. CTA SECTIONS ---------- */
.odx-cta-block {
  background: var(--odx-gradient-hero);
  border-radius: var(--odx-radius-lg);
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.odx-cta-block::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 214, 224, 0.3), transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
}
.odx-cta-block h2 {
  color: #fff;
  position: relative;
  z-index: 1;
}
.odx-cta-block p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}
.odx-cta-block .odx-cta-actions {
  position: relative;
  z-index: 1;
}

.odx-final-cta {
  background: var(--odx-gradient-hero);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.odx-final-cta h2 {
  color: #fff;
}
.odx-final-cta p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- 18. CONTACT CARDS ---------- */
.odx-contact-card {
  background: #fff;
  border: 1px solid var(--odx-border);
  border-radius: var(--odx-radius);
  padding: 28px;
  text-align: center;
  height: 100%;
  transition: var(--odx-transition);
}
.odx-contact-card:hover {
  box-shadow: var(--odx-shadow);
  transform: translateY(-6px);
}
.odx-contact-card .odx-feature-icon {
  margin-bottom: 18px;
}
.odx-contact-card a {
  color: var(--odx-primary);
  font-weight: 700;
}

/* ---------- 19. FORMS ---------- */
.odx-form-control {
  border: 1.5px solid var(--odx-border);
  border-radius: var(--odx-radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  width: 100%;
  transition: var(--odx-transition);
  background: #fff;
}
.odx-form-control:focus {
  outline: none;
  border-color: var(--odx-primary);
  box-shadow: 0 0 0 4px rgba(11, 92, 197, 0.12);
}
.odx-form-label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  display: block;
  color: var(--odx-dark);
}
.odx-map-frame {
  border-radius: var(--odx-radius);
  overflow: hidden;
  box-shadow: var(--odx-shadow-sm);
  height: 100%;
  min-height: 320px;
}
.odx-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- 20. FOOTER ---------- */
.odx-footer {
  background: var(--odx-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}
.odx-footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
  font-size: 1rem;
}
.odx-footer .odx-logo img {
  filter: brightness(0) invert(1);
  height: 42px;
}
.odx-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.odx-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.odx-footer ul li {
  margin-bottom: 12px;
}
.odx-footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--odx-transition);
}
.odx-footer ul li a:hover {
  color: var(--odx-cyan);
  padding-left: 4px;
}
.odx-footer .odx-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  transition: var(--odx-transition);
}
.odx-footer .odx-social a:hover {
  background: var(--odx-gradient-btn);
  transform: translateY(-4px);
}
.odx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.odx-footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.odx-footer-contact-item i {
  color: var(--odx-cyan);
  margin-top: 3px;
}

/* ---------- 21. STICKY WHATSAPP + SCROLL TOP ---------- */
.odx-whatsapp-fab {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.odx-whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: odxPulse 2.2s infinite;
  z-index: -1;
}
@keyframes odxPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
.odx-whatsapp-tooltip {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--odx-dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--odx-transition);
}
.odx-whatsapp-fab:hover .odx-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  left: 72px;
}

.odx-scrolltop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--odx-gradient-btn);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--odx-shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--odx-transition);
  border: none;
}
.odx-scrolltop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- 22. BREADCRUMB / PAGE HERO (inner pages) ---------- */
.odx-page-hero {
  background: var(--odx-gradient-hero);
  color: #fff;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}
.odx-page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 214, 224, 0.3), transparent 70%);
  top: -200px;
  right: -120px;
  border-radius: 50%;
}
.odx-page-hero .container {
  position: relative;
  z-index: 1;
}
.odx-page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
}
.odx-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}
.odx-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.odx-breadcrumb a:hover {
  color: var(--odx-cyan);
}

/* ---------- 23. MISC / UTILITIES ---------- */
.odx-divider-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--odx-gradient-btn);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.odx-soft-card {
  background: #fff;
  border-radius: var(--odx-radius);
  box-shadow: var(--odx-shadow-sm);
  padding: 30px;
}
.odx-badge-pill {
  display: inline-block;
  background: var(--odx-bg-tint);
  color: var(--odx-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

/* ---------- 24. RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .odx-hero {
    padding: 40px 0 80px;
    text-align: center;
  }
  .odx-hero p.lead {
    margin: 0 auto;
  }
  .odx-hero-visual {
    margin-top: 50px;
  }
  .odx-hero-floating.card-1 {
    left: 0;
    top: -6%;
  }
  .odx-hero-floating.card-2 {
    right: 0;
    bottom: -6%;
  }
  .odx-banner-content {
    padding: 34px;
    text-align: center;
  }
  .odx-cta-block {
    padding: 44px 28px;
    text-align: center;
  }
  .odx-step-connector {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.6rem;
  }
  .odx-cta-block,
  .odx-banner {
    text-align: center;
  }
  .odx-final-cta {
    padding: 60px 0;
  }
  .odx-intro-badge {
    position: static;
    margin-top: -30px;
    margin-left: 16px;
    display: inline-flex;
  }
  .btn-odeex-primary,
  .btn-odeex-outline,
  .btn-odeex-white,
  .btn-odeex-call,
  .btn-odeex-whatsapp {
    font-size: 0.88rem;
    padding: 12px 22px;
  }
}

@media (max-width: 575.98px) {
  .odx-hero {
    padding: 30px 0 70px;
  }
  .odx-whatsapp-fab {
    width: 52px;
    height: 52px;
    left: 14px;
    bottom: 18px;
    font-size: 1.4rem;
  }
  .odx-scrolltop {
    right: 14px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }
  .odx-cta-block {
    padding: 34px 20px;
  }
  .odx-product-actions {
    flex-direction: column;
  }
}
