body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300; /* makes the entire site render lighter by default */
}
.navbar {
  height: 70px;
  background-color: #fff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Logo */
.navbar-brand img {
  height: 32px; /* slightly taller for better proportion */
}

.navbar .nav-link {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;          /* thinner link text */
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: #1a1a1a !important;
  padding: 0.6rem 1.1rem;
  transition: color 0.25s ease;
}

.navbar .nav-link:hover {
  color: #00539C !important;
  opacity: 0.9;
}

.navbar .nav-link.active {
  color: #00539C !important;
  font-weight: 400;
}

/* Button */
.navbar .btn-primary {
  background-color: #00539C;
  border-color: #00539C;
  font-weight: 500;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.navbar .btn-primary:hover {
  background-color: #003e74;
  border-color: #003e74;
}

/* Hero section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
              url('../img/dorworks-hero.jpg') center 30% / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Primary buttons */
.btn-primary {
  background-color: #00539C;
  border-color: #00539C;
}
.btn-primary:hover {
  background-color: #003e74;
  border-color: #003e74;
}

/* Section spacing */
.section {
  scroll-margin-top: 90px;
}

/* Card effects */
.card {
  transition: transform .2s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.price-card {
  position: relative;
  overflow: hidden; /* keeps clean card corners */
  border-radius: 10px;
  transition: all 0.3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
/* Hover transition for price cards */
.price-card:hover h3 {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

/* Ribbon container */
.ribbon {
  width: 160px;
  height: 160px;
  overflow: visible; /* allow ribbon to extend */
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 2;
}

/* Ribbon text */
.ribbon span {
  position: absolute;
  display: block;
  width: 240px;
  padding: 6px 20px;
  background: linear-gradient(180deg, #ffcc33 0%, #e6b800 100%);
  color: #0a2342;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
  transform-origin: center;
  top: 34px;
  right: -70px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25), inset 0 1px 2px rgba(255,255,255,0.3);
  letter-spacing: 2px;
  border-radius: 3px;
  z-index: 1;
}

/* Featured plan (strong police blue gradient) */
.featured-plan {
  background: linear-gradient(180deg, #0a2342 0%, #003366 100%);
  border: 2px solid #001f3f;
  color: #fff;
}

/* Borders that feel like “duty gear” */
.border-secondary {
  border-color: #3a3a3a !important;
}
.border-dark {
  border-color: #000 !important;
}

/* Button styles */
.btn-outline-primary {
  color: #003366;
  border-color: #003366;
}
.btn-outline-primary:hover {
  background-color: #003366;
  color: #fff;
}

.btn-outline-dark:hover {
  background-color: #111;
  color: #fff;
}

/* Intro pricing adjustments */
.text-decoration-line-through {
  text-decoration-thickness: 2px;
  opacity: 0.7;
}
/* --- Pricing Blue Harmonization --- */
#pricing h3,
#pricing .text-primary {
  color: #00539C !important; /* matches your primary brand blue */
}

#pricing .btn-outline-primary {
  color: #00539C;
  border-color: #00539C;
}

#pricing .btn-outline-primary:hover {
  background-color: #00539C;
  color: #fff;
}
#pricing .featured-plan h3 { color: #ffcc00 !important; }
