/* ==========================
   PORTFOLIO PAGE THEME
   ========================== */

:root {
  --dcc-bg-page: #f3f5fb;
  --dcc-bg-card: #ffffff;
  --dcc-ink: #0f172a;
  --dcc-muted: #6b7280;
  --dcc-brand: #0b3c88;
  --dcc-radius-card: 26px;
  --dcc-shadow-soft: 0 20px 50px rgba(15,23,42,0.08);
}

/* Base body for this page */
body {
  background: var(--dcc-bg-page);
  color: var(--dcc-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* ==========================
   LAYOUT WRAPPERS
   ========================== */

.dcc-main {
  background: var(--dcc-bg-page);
  padding: 18px 0 40px;
}

.dcc-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px;
}

@media (min-width: 1280px) {
  .dcc-shell {
    padding: 0 20px;
  }
}

.dcc-sec {
  margin-bottom: 32px;
}

/* TEXT HELPERS */

.text-center {
  text-align: center;
}

.dcc-title {
  font-size: 1.85rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dcc-ink);
  margin-bottom: 12px;
}

.dcc-lead {
  font-size: 1.05rem;
  color: var(--dcc-muted);
  margin-bottom: 16px;
}

.dcc-lead-small {
  font-size: 0.98rem;
  color: var(--dcc-muted);
  margin-bottom: 14px;
}

/* ==========================
   HERO COUNT BOX
   ========================== */

.dcc-hero-countbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: var(--dcc-shadow-soft);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.dcc-hero-countbox i {
  color: var(--dcc-brand);
}

/* ==========================
   CATEGORY PILLS
   ========================== */

.dcc-cat-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dcc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  border: 1px solid #d1d5db;
  color: var(--dcc-brand);
  box-shadow: var(--dcc-shadow-soft);
  text-decoration: none;
}

.dcc-pill:hover {
  background: #eef2ff;
}

/* ==========================
   SECTION HEADINGS
   ========================== */

.dcc-h2 {
  font-size: 1.55rem;
  color: var(--dcc-brand);
  margin-bottom: 8px;
  font-weight: 700;
}

/* ==========================
   PORTFOLIO GRID
   ========================== */

.dcc-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.dcc-project-card {
  background: var(--dcc-bg-card);
  border-radius: var(--dcc-radius-card);
  box-shadow: var(--dcc-shadow-soft);
  padding: 12px 12px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dcc-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15,23,42,0.14);
}

.dcc-project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--dcc-radius-card);
  margin-bottom: 10px;
}

.dcc-project-card h3 {
  font-size: 1rem;
  margin: 5px 0;
  color: var(--dcc-ink);
  line-height: 1.3;
}

.dcc-project-card h3 a {
  color: var(--dcc-ink);
  text-decoration: none;
}

.dcc-proj-loc {
  font-size: 0.88rem;
  color: var(--dcc-muted);
}

/* ==========================
   CITY SECTION
   ========================== */

.dcc-card {
  background: var(--dcc-bg-card);
  border-radius: var(--dcc-radius-card);
  padding: 20px 20px 22px;
  box-shadow: var(--dcc-shadow-soft);
}

.dcc-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.dcc-city {
  background: #eef2ff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.dcc-city a {
  text-decoration: none;
  color: var(--dcc-brand);
}

/* ==========================
   FINAL CTA
   ========================== */

.final-cta {
  text-align: center;
  padding: 26px 20px;
}

.dcc-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.dcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--dcc-brand);
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
}

.dcc-btn:hover {
  background: #094076;
}

/* ==========================
   HIDDEN 🤫 SEO GEM
   ========================== */

.dcc-hidden-gem {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 600px) {
  .dcc-title {
    font-size: 1.45rem;
  }
  .dcc-project-card img {
    height: 150px;
  }
  .dcc-shell {
    padding: 0 10px;
  }
}/* FINAL CTA — White Rounded Card */
.final-cta-box {
  background: var(--dcc-bg-card);
  border-radius: var(--dcc-radius-card);
  padding: 28px 22px 32px;
  box-shadow: var(--dcc-shadow-soft);
}

.final-cta-box .dcc-h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.final-cta-box .dcc-lead {
  margin-bottom: 20px;
  color: var(--dcc-muted);
}

.final-cta-box .dcc-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
}/* ==========================
   PREMIUM WHITE CARD FOOTER
   ========================== */

.dcc-footer-premium {
  background: #ffffff;
  border-radius: var(--dcc-radius-card);
  box-shadow: var(--dcc-shadow-soft);
  padding: 40px 28px;
  margin-top: 40px;
}

.dcc-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.dcc-footer-box h3 {
  font-size: 1.05rem;
  color: var(--dcc-brand);
  margin-bottom: 10px;
  font-weight: 700;
}

.dcc-footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dcc-footer-box ul li {
  margin-bottom: 6px;
}

.dcc-footer-box ul li a {
  text-decoration: none;
  color: var(--dcc-muted);
  font-size: 0.92rem;
}

.dcc-footer-box ul li a:hover {
  color: var(--dcc-brand);
}

/* responsive */
@media (max-width: 600px) {
  .dcc-footer-premium {
    padding: 28px 18px;
  }
}/* ==========================
   BRAND CLOSURE – White Round Container
   ========================== */

.brand-closure-final {
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

.bc-card {
  background: #ffffff;
  border-radius: 26px;                    /* Same as project cards */
  padding: 35px 25px;
  max-width: 700px;
  width: 92%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);  /* Same DELECON shadow */
}

/* Brand Name */
.bc-brand a {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0b3c88;
  text-decoration: none;
  letter-spacing: 0.4px;
}

.bc-brand a:hover {
  opacity: 0.8;
}

/* Social Icons */
.bc-social {
  margin: 18px 0;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.bc-social a {
  font-size: 1.6rem;
  color: #0b3c88;
  text-decoration: none;
}

.bc-social a:hover {
  opacity: 0.7;
}

/* Copyright Line */
.bc-meta {
  font-size: 0.92rem;
  color: #3f4d63;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.bc-meta a {
  color: #0b3c88;
  text-decoration: none;
}

.bc-meta a:hover {
  text-decoration: underline;
}

/* Mobile Fix */
@media (max-width: 480px) {
  .bc-meta {
    font-size: 0.85rem;
  }
  .bc-brand a {
    font-size: 1.45rem;
  }
}