
/* =========================================================
   CarpetCare.pro
   styles-core.css
   Sitewide foundation only
   ========================================================= */

/* =========================================================
   01. Design tokens
   ========================================================= */

:root {
  --ccp-navy: #0d2742;
  --ccp-navy-2: #143a5a;
  --ccp-gold: #c9963e;
  --ccp-gold-soft: #f4e5c8;
  --ccp-cream: #fbf7ef;
  --ccp-soft-blue: #eef5fb;
  --ccp-charcoal: #25313d;
  --ccp-muted: #66717c;
  --ccp-border: rgba(13, 39, 66, 0.12);
}

/* =========================================================
   02. Base
   ========================================================= */

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ccp-charcoal);
  background: #fff;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

/* =========================================================
   03. Global navigation
   ========================================================= */

.navbar {
  background: #fff;
  box-shadow: 0 8px 24px rgba(13, 39, 66, 0.06);
}

.navbar-brand img {
  max-width: 225px;
  height: auto;
}

.nav-link {
  font-weight: 700;
  color: var(--ccp-navy);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--ccp-gold);
}

/* =========================================================
   04. Buttons
   ========================================================= */

.btn-ccp-primary {
  background-color: rgba(235, 216, 132, 1);
  --bs-btn-border-color: var(--ccp-gold);
  --bs-btn-color: #111;
  --bs-btn-hover-bg: #b78430;
  --bs-btn-hover-border-color: #b78430;
  --bs-btn-hover-color: #111;
  font-weight: 800;
}

.btn-ccp-outline {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.7);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: var(--ccp-navy);
  font-weight: 800;
}

/* =========================================================
   05. Shared typography helpers
   ========================================================= */

.eyebrow {
  color: var(--ccp-gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-padding {
  padding: 6rem 0;
}

.section-title {
  color: var(--ccp-navy);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.section-intro {
  color: var(--ccp-muted);
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 760px;
}

/* =========================================================
   06. Shared card shells
   ========================================================= */

.service-card,
.standard-card,
.article-card,
.profile-card {
  border: 1px solid var(--ccp-border);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 14px 40px rgba(13, 39, 66, 0.07);
  height: 100%;
  overflow: hidden;
}

.service-card img,
.article-card img,
.profile-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3,
.standard-card h3,
.article-card h3,
.profile-card h3 {
  color: var(--ccp-navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* =========================================================
   07. Shared content patterns
   ========================================================= */

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ccp-gold-soft);
  color: var(--ccp-navy);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex: 0 0 54px;
}

.quality-points {
  display: grid;
  gap: 2rem;
}

.quality-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.quality-point p {
  margin: 0;
  line-height: 1.65;
}

.image-rounded {
  border-radius: 1.5rem;
  box-shadow: 0 24px 70px rgba(13, 39, 66, 0.16);
}

/* =========================================================
   08. Shared band backgrounds
   ========================================================= */

.warm-band {
  background: linear-gradient(180deg, var(--ccp-cream), #fff);
}

.blue-band {
  background: linear-gradient(135deg, var(--ccp-navy), var(--ccp-navy-2));
  color: #fff;
}

.blue-band .section-title,
.blue-band h2,
.blue-band h3 {
  color: #fff;
}

.blue-band p {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   09. Shared list / badge patterns
   ========================================================= */

.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--ccp-muted);
  line-height: 1.65;
}

.check-list i {
  color: var(--ccp-gold);
  margin-top: 0.28rem;
}

.profile-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: var(--ccp-soft-blue);
  color: var(--ccp-navy);
  font-size: 0.8rem;
  font-weight: 800;
}

/* =========================================================
   10. Footer
   ========================================================= */

footer {
  background: var(--ccp-navy);
  color: rgba(255, 255, 255, 0.76);
}

footer a,
footer .nav-link {
  color: rgba(255, 255, 255, 0.86) !important;
  text-decoration: none;
  font-weight: 300;
}

footer a:hover,
footer .nav-link:hover,
footer .nav-link:focus {
  color: var(--ccp-gold) !important;
}

/* =========================================================
   11. Responsive global adjustments
   ========================================================= */

@media (max-width: 575.98px) {
  .navbar-brand img {
    max-width: 190px;
  }

  .section-padding {
    padding: 4.25rem 0;
  }
}