/* ===================================================
   NCCDLG - Custom CSS
   Tema: Luxury NCC / Automotive Premium
   Font: Barlow (headings) + Lato (body)
   =================================================== */

/* Google Fonts caricato via link in HTML */

/* ── Root Variables ──────────────────────────────── */
:root {
  --primary-color:   #1a1f3a;
  --secondary-color: #0d1117;
  --accent-color:    #c9a84c;
  --accent-light:    #e8d5a3;
  --accent-dark:     #a07830;
  --primary-dark:    #0a0d1a;
  --text-dark:       #333;
  --text-light:      #ffffff;
  --text-muted:      #6c757d;
  --bg-light:        #f8f9fa;
  --bg-dark:         #0d1117;
  --gold:            #c9a84c;
  --shadow-sm:       0 2px 10px rgba(0,0,0,.08);
  --shadow-md:       0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:       0 20px 60px rgba(0,0,0,.2);
  --border-radius:   12px;
  --transition:      all 0.3s ease;
}

/* ── Base ────────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: #fff;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--accent-dark); }

/* ── Utility Colors ─────────────────────────────── */
.text-gold      { color: var(--accent-color) !important; }
.text-primary-c { color: var(--primary-color) !important; }
.bg-primary-c   { background-color: var(--primary-color) !important; }
.bg-dark-custom { background-color: var(--bg-dark) !important; }

/* ── Buttons ─────────────────────────────────────── */
.btn-gold {
  background: var(--accent-color);
  color: var(--primary-dark);
  border: 2px solid var(--accent-color);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  transition: var(--transition);
  border-radius: 8px;
}
.btn-gold:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--accent-color);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.3);
}

/* ── Section Utilities ───────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--accent-color);
  font-family: 'Barlow', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.3);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-title.light { color: #fff; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-subtitle.light { color: rgba(255,255,255,.75); }

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Navbar ─────────────────────────────────────── */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: var(--primary-dark) !important;
  padding: .6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.navbar-brand img {
  height: 70px;
  transition: var(--transition);
}
#mainNav.scrolled .navbar-brand img { height: 42px; }

.navbar-nav .nav-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
  color: rgba(255,255,255,.9) !important;
  padding: .5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem; transform: scale(0.5); transform-origin: bottom left;
  right: 1rem;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform .3s ease;
  border-radius: 1px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }

/* Lang Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 4px 8px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.65);
  font-family: 'Barlow', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lang-btn.active {
  background: var(--accent-color);
  color: var(--primary-dark);
}
.lang-btn:hover:not(.active) { color: #fff; }

.navbar-toggler {
  border-color: rgba(255,255,255,.3);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero ─────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background-image: url('../img/ncc-brescia.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,13,26,.92) 0%,
    rgba(26,31,58,.82) 50%,
    rgba(10,13,26,.88) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-content .hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--accent-light);
  font-size: .8rem;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  padding: .3rem .8rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.hero-btns {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  gap: .5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── About / Chi Siamo ───────────────────────────── */
.about-section .about-img-wrap {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-section .about-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.about-section .about-img-wrap .about-img-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--accent-color);
  color: var(--primary-dark);
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.2;
}
.features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.features-list li {
  padding: .5rem 0;
  font-size: .95rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  color: var(--text-dark);
}
.features-list li i {
  color: var(--accent-color);
  margin-top: .2rem;
  flex-shrink: 0;
}

/* ── Services ────────────────────────────────────── */
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px;
  background: rgba(201,168,76,.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent-color);
  color: var(--primary-dark);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: .75rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Fleet Section ───────────────────────────────── */
.fleet-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.fleet-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/IMG_2332.webp');
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.fleet-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-color);
  opacity: 0;
  transition: opacity .3s;
}
.fleet-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.5);
  transform: translateY(-6px);
}
.fleet-card:hover::before { opacity: 1; }
.fleet-card-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  display: block;
}
.fleet-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.fleet-card p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.fleet-section .card-body {
  display: flex;
  flex-direction: column;
}
.fleet-section .card-body .card-text {
  flex: 1;
}
.fleet-section .card-body .fleet-specs {
  margin-top: auto;
}
.fleet-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--accent-light);
  background: rgba(201,168,76,.1);
  padding: .25rem .75rem;
  border-radius: 50px;
  font-weight: 600;
}

/* ── Why Us ─────────────────────────────────────── */
.why-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #f0f0f0;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 55px; height: 55px;
  flex-shrink: 0;
  background: rgba(201,168,76,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-color);
}
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: .4rem;
}
.why-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── CTA Section ─────────────────────────────────── */
.cta-section {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
}
.cta-box.whatsapp-box {
  border-color: rgba(37,211,102,.2);
}
.cta-box.email-box {
  border-color: rgba(201,168,76,.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-divider-line {
  width: 1px;
  height: 80%;
  background: rgba(255,255,255,.15);
}
@media (max-width: 991px) {
  .cta-divider-line {
    width: 80%;
    height: 1px;
  }
}
.cta-box .form-control,
.cta-box .form-select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .9rem;
  transition: var(--transition);
}
.cta-box .form-control::placeholder { color: rgba(255,255,255,.4); }
.cta-box .form-control:focus,
.cta-box .form-select:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201,168,76,.2);
  color: #fff;
}

/* ── Contact Section ────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(201,168,76,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-color);
}
.contact-info-item h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.contact-info-item p,
.contact-info-item a {
  font-size: .95rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}
.contact-info-item a:hover { color: var(--accent-color); }

/* Contact Form */
#contactForm .form-control,
#contactForm .form-select,
#bookingForm .form-control,
#bookingForm .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: var(--transition);
  background: #fff;
}
#contactForm .form-control:focus,
#contactForm .form-select:focus,
#bookingForm .form-control:focus,
#bookingForm .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
#contactForm label,
#bookingForm label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: .35rem;
}

.map-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

/* ── Footer ─────────────────────────────────────── */
footer.main-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
footer.main-footer h5 {
  color: var(--accent-color);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
}
footer.main-footer a {
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: .4rem;
  transition: var(--transition);
  font-size: .88rem;
}
footer.main-footer a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}
footer.main-footer .footer-brand img {
  height: 220px;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}
footer.main-footer .footer-divider {
  border-color: rgba(255,255,255,.08);
  margin: 2rem 0 1.5rem;
}
.social-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7) !important;
  font-size: 1rem;
  transition: var(--transition);
  margin: 0 !important;
  padding: 0 !important;
}
.social-link:hover {
  background: var(--accent-color);
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
}
.footer-copyright {
  background: rgba(0,0,0,.3);
  padding: 1rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ── Booking Modal ───────────────────────────────── */
#bookingModal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}
#bookingModal .modal-header {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 1.5rem 1.75rem;
}
#bookingModal .modal-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
#bookingModal .modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: .7;
}
#bookingModal .modal-header .btn-close:hover { opacity: 1; }
#bookingModal .modal-body {
  padding: 2rem 1.75rem;
}
#bookingModal .modal-footer {
  border-top: 1px solid #f0f0f0;
  padding: 1rem 1.75rem;
}
.booking-lead {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

/* ── Scroll to top ───────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--accent-color);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(201,168,76,.4);
  transition: var(--transition);
}
#scrollTop:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px);
}
#scrollTop.visible { display: flex; }

/* ── Animations ─────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ── 404 Page ────────────────────────────────────── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 .error-code {
  font-family: 'Barlow', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  text-shadow: 0 4px 20px rgba(201,168,76,.3);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--primary-dark);
    border-radius: 12px;
    padding: 1rem;
    margin-top: .5rem;
    box-shadow: var(--shadow-lg);
  }
  .navbar-collapse .d-flex.align-items-center { margin-top: 3px; }
  .hero-section { background-attachment: scroll; }
  .about-section .about-img-wrap img { height: auto; }
  .about-section .about-img-wrap .about-img-badge {
    bottom: 1rem;
    left: 1rem;
    transform: scale(0.5);
    transform-origin: bottom left;
  }
  .cta-box { padding: 1.75rem; }
}
@media (max-width: 767px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-btns {
  margin-bottom: 50px; flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .fleet-card, .service-card, .why-card { margin-bottom: .5rem; }
  .cta-box.email-box { border-top: 1px solid rgba(201,168,76,.2); }
  footer.main-footer .footer-brand img { height: 200px; }
  footer.main-footer .footer-brand { text-align: center; }
  footer.main-footer { text-align: center; }
  footer.main-footer .footer-links, footer.main-footer .footer-contact { text-align: center; }
  footer.main-footer h5 { text-align: center; }
  footer.main-footer .social-links { justify-content: center; }
  footer.main-footer .col-lg-4 a[style*="display:flex"],
  footer.main-footer .col-lg-4 span[style*="display:flex"],
  footer.main-footer .col-lg-3 span[style*="display:flex"] { justify-content: center; }
  .map-wrap iframe { height: 250px; }
}
@media (max-width: 480px) {
  section { padding: 3rem 0 !important; }
  .hero-content { padding: 6rem 0 3rem; }
  .hero-badges { gap: .35rem; }
  .hero-badge { font-size: .75rem; }
}

/* Form validation */
.form-control.is-invalid, .form-check-input.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
