/* ============================================================
   NCDD Pro – Modern Dark Theme with 3D Effects
   ============================================================ */

:root {
  --primary:   #f74553;
  --primary-glow: rgba(247,69,83,0.45);
  --dark:      #060917;
  --navy:      #0b0e31;
  --accent:    #00d4ff;
  --accent-glow: rgba(0,212,255,0.35);
  --purple:    #7c3aed;
  --glass:     rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.12);
}

/* ── Global reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* boxed wrapper */
.boxed {
  background: var(--dark) !important;
  box-shadow: none !important;
}

/* ── TOP BAR ──────────────────────────────────────────────── */
.header-inner-pages .top {
  background: rgba(5,9,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.wrap-slider .header.style-color {
  background: rgba(6,9,23,0.92) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4) !important;
}

#mainnav > ul > li > a {
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.3s, text-shadow 0.3s;
}

#mainnav > ul > li > a:hover,
#mainnav > ul > li > a.active {
  color: var(--accent) !important;
  text-shadow: 0 0 15px var(--accent-glow);
}

/* ── HERO SLIDER ──────────────────────────────────────────── */
#ncdd-hero {
  position: relative;
  overflow: hidden;
}

#ncdd-hero .carousel-item {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ncdd-hero .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,9,23,0.88) 0%,
    rgba(11,14,49,0.75) 50%,
    rgba(124,58,237,0.25) 100%
  );
  z-index: 1;
}

/* Particle canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#ncdd-hero .carousel-inner {
  z-index: 3;
}

#ncdd-hero .carousel-caption {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  z-index: 4;
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

#ncdd-hero .carousel-caption h3 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: slideUp 0.8s ease both;
}

#ncdd-hero .carousel-caption p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin: 0 auto 2.5rem;
  max-width: 650px;
  animation: slideUp 0.8s 0.15s ease both;
}

#ncdd-hero .carousel-caption .btn {
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  color: #fff;
  border: none;
  padding: 15px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 12px 35px var(--primary-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 0.8s 0.3s ease both;
}

#ncdd-hero .carousel-caption .btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px var(--primary-glow);
}

/* Carousel controls */
#ncdd-hero .carousel-control-prev,
#ncdd-hero .carousel-control-next {
  z-index: 5;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  margin: 0 20px;
  backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s;
}

#ncdd-hero .carousel-control-prev:hover,
#ncdd-hero .carousel-control-next:hover {
  background: rgba(247,69,83,0.25);
  border-color: var(--primary);
}

#ncdd-hero .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  transition: background 0.3s;
}

#ncdd-hero .carousel-indicators li.active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ── SECTION HEADER (shared) ──────────────────────────────── */
.ncdd-section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 15px;
}

.ncdd-section-header .label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ncdd-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.ncdd-section-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── SERVICE CARDS ────────────────────────────────────────── */
.bwt-service {
  background: linear-gradient(180deg, var(--dark) 0%, #0d1235 100%) !important;
  padding: 100px 0 80px !important;
}

.bwt-service .box1,
.bwt-service .box2,
.bwt-service .box3 {
  padding: 15px;
  margin-bottom: 30px;
}

/* Card wrapper */
.ncdd-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  transform-style: preserve-3d;
  position: relative;
  height: 100%;
}

.ncdd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.ncdd-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-2deg);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 30px rgba(0,212,255,0.15),
    0 0 0 1px rgba(0,212,255,0.25) inset;
  border-color: rgba(0,212,255,0.35);
}

.ncdd-card:hover::before { opacity: 1; }

.ncdd-card .card-thumb {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.ncdd-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ncdd-card:hover .card-thumb img { transform: scale(1.08); }

.ncdd-card .card-thumb .thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,9,23,0.85) 100%);
}

.ncdd-card .card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -36px auto 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ncdd-card:hover .card-icon {
  transform: scale(1.1) translateZ(20px);
}

.ncdd-card .card-icon.red {
  background: linear-gradient(135deg, #f74553, #c0392b);
  box-shadow: 0 10px 30px rgba(247,69,83,0.55);
}

.ncdd-card .card-icon.purple {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  box-shadow: 0 10px 30px rgba(124,58,237,0.55);
}

.ncdd-card .card-icon.teal {
  background: linear-gradient(135deg, #0d9488, #059669);
  box-shadow: 0 10px 30px rgba(13,148,136,0.55);
}

.ncdd-card .card-icon.blue {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  box-shadow: 0 10px 30px rgba(14,165,233,0.55);
}

.ncdd-card .card-icon i {
  color: #fff;
  font-size: 1.7rem;
}

.ncdd-card .card-body {
  padding: 10px 28px 30px;
  position: relative;
  z-index: 1;
}

.ncdd-card .card-body h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.ncdd-card .card-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.85;
  margin: 0;
}

/* ── STATS SECTION ────────────────────────────────────────── */
.bwt-service-info {
  background: linear-gradient(135deg, #06091a 0%, #0f1a50 50%, #06091a 100%) !important;
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
}

.bwt-service-info::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(247,69,83,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Stat card */
.ncdd-stat-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 0 10px;
}

.ncdd-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.ncdd-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 30px var(--primary-glow);
}

.ncdd-stat-card:hover::after { opacity: 1; }

.ncdd-stat-card .stat-number {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary) 0%, #ff8a80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  display: block;
}

.ncdd-stat-card h4 {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.ncdd-stat-card .stat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(247,69,83,0.12);
  border: 1px solid rgba(247,69,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ncdd-stat-card .stat-icon i {
  color: var(--primary);
  font-size: 1.3rem;
}

/* ── NEWS / VIDEOS SECTION ────────────────────────────────── */
.bwt-news {
  background: linear-gradient(180deg, #0d1235 0%, var(--dark) 100%) !important;
  padding: 100px 0 80px !important;
}

/* Mentorship CTA */
.ncdd-cta-box {
  background: linear-gradient(
    135deg,
    rgba(247,69,83,0.12) 0%,
    rgba(124,58,237,0.14) 100%
  );
  border: 1px solid rgba(247,69,83,0.3);
  border-radius: 24px;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ncdd-cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,69,83,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.ncdd-cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.ncdd-cta-box .cta-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 30px;
  background: rgba(247,69,83,0.15);
  border: 1px solid rgba(247,69,83,0.35);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ncdd-cta-box h4 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ncdd-cta-box .cta-sub {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.ncdd-cta-box .cta-desc {
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  font-size: 0.93rem;
  margin-bottom: 30px;
}

.ncdd-cta-box .btn-cta {
  display: block;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px var(--primary-glow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.ncdd-cta-box .btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px var(--primary-glow);
  color: #fff;
}

/* Videos grid title */
.ncdd-news-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 6px;
  padding-bottom: 18px;
  position: relative;
}

.ncdd-news-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

/* Video card */
.ncdd-video-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  margin-bottom: 22px;
}

.ncdd-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
}

.ncdd-video-card .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.ncdd-video-card .video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.ncdd-video-card .video-info {
  padding: 14px 16px;
}

.ncdd-video-card .video-info a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.3s;
  display: block;
}

.ncdd-video-card .video-info a:hover {
  color: var(--accent);
  text-decoration: none;
}

.ncdd-video-card .video-info .tag {
  font-size: 0.68rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

/* Videos section divider */
.bwt-news hr {
  border-color: rgba(255,255,255,0.08);
  margin: 10px 0 20px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer,
.bwt-footer {
  background: #030610 !important;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float3d {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50%       { transform: translateY(-8px) rotateX(2deg); }
}

/* AOS-like reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 992px) {
  #ncdd-hero .carousel-item { min-height: 85vh; }
  .ncdd-stat-card { margin: 0 0 20px; }
  .bwt-service-info .col-sm-12 + .col-sm-12 .ncdd-stat-card {
    border-top: 1px solid var(--glass-border);
  }
}

@media (max-width: 768px) {
  #ncdd-hero .carousel-caption h3 { font-size: 1.7rem; }
  #ncdd-hero .carousel-caption p  { font-size: 0.95rem; }
  .ncdd-section-header h2 { font-size: 1.6rem; }
  .ncdd-cta-box { margin-bottom: 40px; }
}

/* ============================================================
   INNER PAGES – Shared Styles
   ============================================================ */

/* ── Page Hero Banner ─────────────────────────────────────── */
.ncdd-page-hero {
  background: linear-gradient(135deg, #06091a 0%, #0f1a50 60%, #06091a 100%);
  padding: 50px 0 55px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ncdd-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(247,69,83,0.09) 0%, transparent 50%),
    radial-gradient(circle at 85% 40%, rgba(0,212,255,0.09) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative orb */
.ncdd-page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ncdd-page-hero .container { position: relative; z-index: 1; }

.ncdd-page-hero .page-label {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 30px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.28);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ncdd-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;              /* solid fallback — always visible */
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.ncdd-page-hero p.lead {
  color: rgba(255,255,255,0.58);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Breadcrumbs */
.ncdd-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.ncdd-breadcrumbs li { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.ncdd-breadcrumbs li a { color: rgba(255,255,255,0.5); transition: color 0.3s; text-decoration: none; }
.ncdd-breadcrumbs li a:hover { color: var(--accent); }
.ncdd-breadcrumbs li + li::before { content: '/'; margin-right: 6px; }
.ncdd-breadcrumbs li:last-child { color: var(--accent); }

/* ── Inner Sections ───────────────────────────────────────── */
.ncdd-inner-section {
  padding: 80px 0;
  background: var(--dark);
}

.ncdd-inner-section.alt {
  background: linear-gradient(180deg, #0d1235 0%, var(--dark) 100%);
}

/* ── Content blocks (about, mercado) ─────────────────────── */
.ncdd-content-block { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.9; }
.ncdd-content-block h3 { color: #fff; font-weight: 800; font-size: 1.5rem; margin-bottom: 16px; }
.ncdd-content-block h4 { color: #fff; font-weight: 700; font-size: 1.05rem; margin: 24px 0 10px; }
.ncdd-content-block h4.accent { color: var(--accent); }
.ncdd-content-block p { margin-bottom: 16px; }
.ncdd-content-block strong { color: rgba(255,255,255,0.9); }

.ncdd-content-block .formula-box {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 22px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.5px;
}

/* About image */
.ncdd-about-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.18);
  margin-bottom: 30px;
}

.ncdd-about-img img { width: 100%; display: block; object-fit: cover; }

/* Tech tags */
.ncdd-tech-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.ncdd-tech-list .tag {
  padding: 5px 14px;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 30px;
  color: rgba(255,255,255,0.78);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Service cards (inner page) ───────────────────────────── */
.ncdd-service-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  height: 100%;
}

.ncdd-service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), 0 0 20px rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
}

.ncdd-service-item .item-img { height: 200px; overflow: hidden; position: relative; }
.ncdd-service-item .item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ncdd-service-item:hover .item-img img { transform: scale(1.06); }
.ncdd-service-item .item-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,9,23,0.85) 100%);
}

.ncdd-service-item .item-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: -30px auto 16px;
  position: relative; z-index: 2;
}

.ncdd-service-item .item-icon.red    { background: linear-gradient(135deg,#f74553,#c0392b); box-shadow:0 8px 25px rgba(247,69,83,.5); }
.ncdd-service-item .item-icon.purple { background: linear-gradient(135deg,#7c3aed,#4f46e5); box-shadow:0 8px 25px rgba(124,58,237,.5); }
.ncdd-service-item .item-icon.teal   { background: linear-gradient(135deg,#0d9488,#059669); box-shadow:0 8px 25px rgba(13,148,136,.5); }
.ncdd-service-item .item-icon.blue   { background: linear-gradient(135deg,#0ea5e9,#2563eb); box-shadow:0 8px 25px rgba(14,165,233,.5); }
.ncdd-service-item .item-icon.orange { background: linear-gradient(135deg,#f59e0b,#d97706); box-shadow:0 8px 25px rgba(245,158,11,.5); }
.ncdd-service-item .item-icon.pink   { background: linear-gradient(135deg,#ec4899,#be185d); box-shadow:0 8px 25px rgba(236,72,153,.5); }
.ncdd-service-item .item-icon i { color:#fff; font-size:1.4rem; }

.ncdd-service-item .item-body { padding: 8px 24px 28px; }
.ncdd-service-item .item-body h4 { color:#fff; font-weight:700; font-size:1.05rem; margin-bottom:10px; }
.ncdd-service-item .item-body p  { color:rgba(255,255,255,.65); font-size:.88rem; line-height:1.8; margin:0 0 10px; }

.ncdd-service-item .item-body ul { padding:0; list-style:none; margin:0; }
.ncdd-service-item .item-body ul li { color:rgba(255,255,255,.65); font-size:.85rem; line-height:1.8; padding:3px 0 3px 18px; position:relative; }
.ncdd-service-item .item-body ul li::before { content:'›'; position:absolute; left:0; color:var(--accent); font-weight:700; }

/* ── Contact cards ────────────────────────────────────────── */
.ncdd-contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 35px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  margin-bottom: 24px;
  height: 100%;
}

.ncdd-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(0,212,255,0.3);
}

.ncdd-contact-card .card-icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}

.ncdd-contact-card .card-icon.red    { background:linear-gradient(135deg,#f74553,#c0392b); box-shadow:0 8px 25px rgba(247,69,83,.45); }
.ncdd-contact-card .card-icon.purple { background:linear-gradient(135deg,#7c3aed,#4f46e5); box-shadow:0 8px 25px rgba(124,58,237,.45); }
.ncdd-contact-card .card-icon.teal   { background:linear-gradient(135deg,#0d9488,#059669); box-shadow:0 8px 25px rgba(13,148,136,.45); }
.ncdd-contact-card .card-icon.blue   { background:linear-gradient(135deg,#0ea5e9,#2563eb); box-shadow:0 8px 25px rgba(14,165,233,.45); }
.ncdd-contact-card .card-icon i { color:#fff; font-size:1.3rem; }

.ncdd-contact-card h5 { color:var(--accent); font-size:.7rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; }
.ncdd-contact-card p, .ncdd-contact-card a { color:rgba(255,255,255,.72); font-size:.92rem; line-height:1.75; margin:0; display:block; text-decoration:none; }
.ncdd-contact-card a:hover { color:var(--accent); }

/* Contact form */
.ncdd-contact-form-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 42px;
  margin-top: 50px;
}

.ncdd-contact-form-wrap h3 { color:#fff; font-weight:800; font-size:1.5rem; margin-bottom:28px; }

.ncdd-form-row { display: flex; gap: 16px; }
.ncdd-form-row .ncdd-form-group { flex: 1; }

.ncdd-form-group { margin-bottom: 18px; }
.ncdd-form-group label { display:block; color:rgba(255,255,255,.55); font-size:.78rem; font-weight:600; letter-spacing:0.5px; margin-bottom:8px; text-transform:uppercase; }

.ncdd-form-group input,
.ncdd-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.ncdd-form-group input::placeholder,
.ncdd-form-group textarea::placeholder { color:rgba(255,255,255,.3); }

.ncdd-form-group input:focus,
.ncdd-form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.ncdd-form-group textarea { min-height: 130px; resize: vertical; }

.ncdd-form-submit {
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  color: #fff;
  border: none;
  padding: 15px 42px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px var(--primary-glow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ncdd-form-submit:hover { transform: translateY(-3px); box-shadow: 0 18px 40px var(--primary-glow); }

/* ── Mercado selects ──────────────────────────────────────── */
.ncdd-select-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 20px;
}

.ncdd-select-box h4 { color:#fff; font-weight:700; font-size:.95rem; margin-bottom:12px; }

.ncdd-select-box select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 40px 12px 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  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 fill='rgba(0,212,255,0.7)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.ncdd-select-box select:focus { border-color: var(--accent); }
.ncdd-select-box select option { background: #0b0e31; color: #fff; }

/* Map */
.ncdd-map-section { border-top: 1px solid rgba(255,255,255,0.07); }
.ncdd-map-section iframe { display: block; }

/* ── Responsive (inner pages) ─────────────────────────────── */
@media (max-width: 768px) {
  .ncdd-page-hero { padding: 110px 0 60px; }
  .ncdd-page-hero h1 { font-size: 1.8rem; }
  .ncdd-form-row { flex-direction: column; gap: 0; }
  .ncdd-contact-form-wrap { padding: 28px 22px; }
}
