/*
Theme Name: Construction Consulting Child
Template: construction-consulting
*/

:root {
  --navy: #0d3a66;
  --blue: #14508c;
  --blue-mid: #1e6bb5;
  --blue-lt: #4a80b8;
  --sky: #e6f0f8;
  --sky-deep: #c8dff4;
  --white: #ffffff;
  --off-white: #f8fafc;
  --charcoal: #1a1f2e;
  --slate: #3d4a5c;
  --muted: #6b7a8d;
  --rule: #dde4ed;
  --gold: #b8902a;
  --gold-lt: #f5e8c0;
  --green: #1a6b35;
  --green-lt: #eaf6ee;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --shadow-sm: 0 1px 4px rgba(13, 58, 102, 0.08);
  --shadow-md: 0 4px 20px rgba(13, 58, 102, 0.12);
  --shadow-lg: 0 12px 48px rgba(13, 58, 102, 0.18);
  --radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 28px 60px;
}
/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.2;
  color:#0d3a66;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
p, ul > li {
  color: var(--slate);
  line-height: 1.75;
}

/* ─── NAV ─── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
  background: rgba(13, 58, 102, 0.97);
  padding:8px 0;
}
.admin-bar .nav {
    top: 32px;
}
.nav.scrolled {
  background: rgba(13, 58, 102, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.page-template-default .container a {
    color: #0d3a66;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 65px;
  display:block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: var(--sans);
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.nav-cta a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 7px !important;
}
.nav-cta a:hover {
  background: #d4a832 !important;
  transform: translateY(-1px);
}
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}
.main-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin: 0;
    padding: 0;
}

.main-menu a {
    text-decoration: none;
}
/* Coming Soon BTN */
.nav-cta.menu-item-238 a, .hero-actions .btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.nav-cta.menu-item-238 a::after, .hero-actions .btn-outline::after {
    content: "Coming Soon";
    font-size: 9px;
    font-family: sans-serif;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: absolute;
    right: -20px;
    top: -12px;
}
/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--blue) 55%,
    #1e6bb5 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

/* Animated diagonal accent */
.hero-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}
.hero-accent2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle at center,
    rgba(184, 144, 42, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite 2s;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 22px;
}
.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #d4a832;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 144, 42, 0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: var(--sans);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Hero right: platform preview card */
.hero-platform-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  padding: 28px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.hpc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hpc-dots {
  display: flex;
  gap: 5px;
}
.hpc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hpc-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  margin-left: 6px;
}
.hpc-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.hpc-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
}
.hpc-stat-val {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--sans);
}
.hpc-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--sans);
  margin-top: 2px;
}
.hpc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--sans);
}
.hpc-item:last-child {
  border-bottom: none;
}
.hpc-item-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hpc-item-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.hpc-item-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  font-family: var(--sans);
}

/* ─── SECTIONS ─── */
.section {
  padding: 96px 28px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt {
  background: var(--off-white);
}
.section-dark {
  background: var(--navy);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--sans);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.light {
  color: rgba(255, 255, 255, 0.6);
}
.section-label.light::before {
  background: var(--gold);
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--sky);
  border-top: 1px solid var(--sky-deep);
  border-bottom: 1px solid var(--sky-deep);
  padding: 22px 28px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
}
.trust-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--serif);
}
.trust-label {
  font-size: 13px;
  color: var(--muted);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-img img {
    width: 100%;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-placeholder {
  font-size: 80px;
  opacity: 0.3;
}
.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 16px 22px;
  font-family: var(--sans);
  box-shadow: var(--shadow-lg);
}
.aac-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--serif);
}
.aac-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}
.about-content p {
  margin-bottom: 18px;
}
.about-content p:last-of-type {
  margin-bottom: 28px;
}

/* ─── SERVICES ─── */
.services-intro {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: var(--blue-lt);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--sky);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.service-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
}
.service-list {
  list-style: none;
  margin-top: 12px;
}
.service-list li {
  font-size: 13px;
  color: var(--slate);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.service-list li::before {
  content: "›";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PLATFORM ─── */
.platform-intro {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}
.platform-intro h2 {
  color: var(--white);
}
.platform-intro p {
  color: rgba(255, 255, 255, 0.7);
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.role-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.role-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
.role-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.role-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}
.role-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.role-features {
  margin-top: 12px;
  list-style: none;
}
.role-features li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding: 2px 0;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.role-features li::before {
  content: "✓";
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Platform workflow steps */
.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.workflow::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(184, 144, 42, 0.4),
    rgba(255, 255, 255, 0.1)
  );
}
.workflow-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.ws-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #204972;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: var(--serif);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}
.workflow-step:hover .ws-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.ws-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  font-family: var(--sans);
}
.ws-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
}

/* Platform CTA strip */
.platform-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px 40px;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pca-text h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.pca-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── VALUE PROPS ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 28px 20px;
}
.value-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.value-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13px;
  color: var(--muted);
}
.role-icon img {
    width: 40px;
}
.service-icon img {
    width: 30px;
}
.value-icon-wrap img {
    width: 40px;
}
/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-photo img {
    width: 100%;
    height: 100%;
}
.team-photo {
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--blue-lt);
}
.team-info {
  padding: 20px;
}
.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--serif);
  margin-bottom: 3px;
}
.team-title {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.team-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── PARTNERS ─── */
.partners-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}
.ptab {
  padding: 8px 22px;
  border-radius: 20px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.ptab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.partners-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.partners-grid.active {
  display: grid;
}
.partner-logo {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  min-height: 80px;
}
.partner-logo:hover {
  border-color: var(--blue-lt);
  box-shadow: var(--shadow-sm);
}
.partner-logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.2s;
}
.partner-logo:hover img {
  filter: grayscale(0%);
}

/* ─── LOGIN ─── */
.login-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}
.login-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.login-inner h2 {
  color: #fff;
  margin-bottom: 8px;
}
.login-inner > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}
.login-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(8px);
  text-align: left;
}
.login-field {
  margin-bottom: 16px;
}
.login-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--sans);
  margin-bottom: 6px;
  display: block;
}
.login-input {
  width: 100%;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: #fff;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}
.login-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}
.login-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.login-btn {
  width: 100%;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  margin-top: 6px;
  transition: all 0.2s;
}
.login-btn:hover {
  background: #d4a832;
}
.login-footer {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
}
.login-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.login-footer a:hover {
  color: #fff;
}
.role-selector-login {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.rsl-btn {
  padding: 7px 4px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  text-align: center;
  transition: all 0.15s;
}
.rsl-btn.active {
  border-color: var(--gold);
  background: rgba(184, 144, 42, 0.15);
  color: var(--gold);
}
.rsl-icon {
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  padding: 60px 28px 32px;
  text-align: left !important;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img {
  height: 65px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contact-item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--sans);
  margin-bottom: 16px;
}
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--sans);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-family: var(--sans);
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.pca-text {
    width: 75%;
}
/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* login form css */


.cstLoginForm .role-boxes .gfield_radio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cstLoginForm .role-boxes .gchoice {
    flex: 0 0 calc(33.33% - 10px);
    box-sizing: border-box;
}

.cstLoginForm .role-boxes input[type="radio"] {
    display: none !important;
}

.cstLoginForm .role-boxes label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    border: 1px solid #4d6f95;
    border-radius: 8px;
    background: #2d5d8f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.cstLoginForm .role-boxes input[type="radio"]:checked + label {
    border: 1px solid #ffc107;
	color:#ffc107;
}
.cstLoginForm .gfield_radio .gchoice label {
    margin-left: 0;
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60px;
    color: rgba(255, 255, 255, 0.6);
}
.cstLoginForm .gfield_radio {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px !important;
}

.cstLoginForm .gfield .gfield_label.gform-field-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cstLoginForm .ginput_container.ginput_container_email input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 22px 14px;
    font-size: 14px;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
}
.cstLoginForm .textarea {
    border-radius: 8px !important;
}
.cstLoginForm .gform_button {
    background: #b8902a !important;
    width: 100% !important;
    border-radius: 8px !important;
    padding: 14px !important;
    color: #0d3a66 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.cstLoginForm .gform_button:hover{
	background: #d4a832 !important;
}
.cstLoginForm_wrapper .gform_validation_errors {
    margin-bottom: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0;
    box-shadow: none !important;
}

.cstLoginForm #field_1_3 {
    margin-top: -20px !important;
}
.cstLoginForm_wrapper .gform_validation_errors:focus{
	outline: none !important;
}
.cstLoginForm_wrapper .gform_heading {
    display: none;
}

.cstLoginForm .gchoice #label_1_4_0::before {
    content: "🏦";
    font-size: 15px;
}
.cstLoginForm .gchoice #label_1_4_1::before {
    content: "🏗️";
    font-size: 15px;
}

.cstLoginForm .gchoice #label_1_4_2::before {
    content: "🏠";
    font-size: 15px;
}

.cstLoginForm .gchoice #label_1_4_3::before {
    content: "🔍";
    font-size: 15px;
}

.cstLoginForm .gchoice #label_1_4_4::before {
    content: "📐";
    font-size: 15px;
}

.cstLoginForm .gchoice #label_1_4_5::before {
    content: "⚙️";
    font-size: 15px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-platform-card {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img {
    height: 320px;
  }
  .about-accent-card {
    right: 12px;
    bottom: -12px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
	.pca-text {
    width: 100%;
}
  .nav-links {
    display: none;
  }
  .nav-mobile-btn {
    display: flex;
  }
  .services-grid,
  .roles-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .workflow {
    grid-template-columns: 1fr 1fr;
  }
  .workflow::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trust-inner {
    gap: 28px;
  }
  .platform-cta {
    flex-direction: column;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 499px) {
    .gfield_radio {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .cstLoginForm .gfield_radio .gchoice label {
        width: 115px;
    }
}