/* ============================================================
   PROP BUILDERS LTD — Global Styles v2
   Modern, premium construction company website
   ============================================================ */


/* --- CSS Variables --- */
:root {
  --primary:       #1a3a5c;
  --primary-dark:  #0d1b2a;
  --primary-light: #2c5282;
  --secondary:     #f4a229;
  --secondary-light: #f7b84a;
  --accent:        #e63946;
  --light:         #f8f9fa;
  --dark:          #0d1b2a;
  --grey-light:    #e9ecef;
  --grey-mid:      #adb5bd;
  --white:         #ffffff;
  --text-dark:     #212529;
  --text-muted:    #6c757d;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.16);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.2);
  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;
  --transition:    all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all .5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading:  'Plus Jakarta Sans', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --navbar-height: 68px;
  --topbar-height: 36px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
}
p { color: var(--text-muted); line-height: 1.8; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--secondary); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }
.display-2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.display-3 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.15; }
.section-title { font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 900; color: var(--primary-dark); margin-bottom: .6rem; letter-spacing: -0.02em; }
.section-title span { color: var(--secondary); position: relative; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 2rem; }
.text-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.overline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,162,41,.1); border: 1px solid rgba(244,162,41,.25);
  color: var(--secondary); padding: 6px 18px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: .75rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius-sm); font-family: var(--font-heading);
  font-weight: 700; font-size: .9rem; letter-spacing: .5px; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer; transition: var(--transition);
  text-decoration: none; gap: 8px; position: relative; overflow: hidden; white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.1);
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(244,162,41,.35); color: var(--white); }

.btn-primary {
  background: var(--secondary); color: var(--white); border-color: var(--secondary);
}
.btn-primary:hover { background: var(--secondary-light); border-color: var(--secondary-light); }
.btn-dark {
  background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark);
}
.btn-dark:hover { background: var(--primary); border-color: var(--primary); }
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { background: var(--white); color: var(--primary-dark); border-color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--secondary); border-color: var(--secondary);
}
.btn-ghost:hover { background: var(--secondary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: #c5303c; border-color: #c5303c; }

.btn-lg { padding: 18px 42px; font-size: .95rem; border-radius: var(--radius-sm); }
.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; flex-shrink: 0; }

.btn-group-custom {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.btn-group-custom .btn { min-width: 180px; justify-content: center; }

/* Ripple effect */
.btn .ripple {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.4);
  transform: scale(0); animation: ripple .6s linear; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  padding: 0;
  min-height: var(--topbar-height);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: sticky; top: 0; z-index: 1065;
  transition: transform .4s ease, opacity .4s ease;
}
.topbar.hidden { transform: translateY(-100%); opacity: 0; overflow: hidden; max-height: 0; }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}
.topbar-left { display: flex; gap: 28px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item a { color: rgba(255,255,255,.75); font-size: .8rem; }
.topbar-item a:hover { color: var(--secondary); }
.topbar-item i { font-size: .8rem; color: var(--secondary); }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right span { font-size: .75rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: var(--radius-sm); font-size: .75rem;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.topbar-social a:hover { background: var(--secondary); color: var(--white); transform: translateY(-2px) scale(1.1); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1050;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .3s ease, border-color .3s ease;
  min-height: var(--navbar-height);
  display: flex; align-items: center;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  border-bottom-color: rgba(244,162,41,.2);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}

/* Logo */
.navbar-brand {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
  padding: 4px 8px; border-radius: 10px;
  transition: all .25s ease;
}
.navbar-brand:hover {
  background: rgba(244,162,41,.08);
  transform: scale(1.02);
}
.navbar-brand img {
  max-height: 54px; width: auto;
  border-radius: 10px;
}

/* Desktop nav */
.navbar-collapse { display: flex; align-items: center; flex: 1; justify-content: flex-end; }
.navbar-nav { display: flex; flex-direction: row !important; align-items: center; gap: 0; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; display: list-item; list-style: none; }

.nav-link {
  font-family: var(--font-heading); font-weight: 600; font-size: .78rem;
  color: var(--text-dark) !important; letter-spacing: .4px; text-transform: uppercase;
  padding: 8px 13px !important; border-radius: var(--radius-sm);
  transition: all .22s ease; position: relative;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
/* Animated underline */
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 13px; right: 13px;
  height: 2px; background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform .3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-link:hover::after,
.nav-item.active .nav-link::after { transform: scaleX(1); }
.nav-link:hover { color: var(--secondary) !important; }
.nav-item.active .nav-link { color: var(--secondary) !important; font-weight: 700; }

/* Nav icons */
.nav-link i { font-size: .75rem; opacity: .65; transition: all .25s ease; flex-shrink: 0; }
.nav-link i.bi-chevron-down { font-size: .55rem; opacity: .4; }
.nav-link:hover i { opacity: 1; color: var(--secondary); }
.nav-item.dropdown:hover .nav-link .bi-chevron-down { transform: rotate(180deg); }

/* Hide mobile close button on desktop */
.mobile-menu-close { display: none !important; }

/* CTA button */
.nav-cta { margin-left: 20px; }
.nav-cta .btn {
  padding: 10px 24px; font-size: .76rem; font-weight: 700; letter-spacing: .5px;
  background: var(--secondary); color: var(--white); border: none;
  border-radius: var(--radius-full); box-shadow: 0 4px 16px rgba(244,162,41,.35);
  transition: all .28s ease;
}
.nav-cta .btn:hover {
  background: var(--primary-dark); box-shadow: 0 6px 24px rgba(13,27,42,.3);
  transform: translateY(-2px);
}
.nav-cta .btn::before { display: none; }
.nav-cta .btn i { font-size: .8rem; }

/* Hamburger — hidden on desktop */
.navbar-toggler {
  display: none;
  border: none; background: rgba(244,162,41,.1); padding: 10px; cursor: pointer;
  border-radius: var(--radius-sm); transition: var(--transition); flex-shrink: 0;
  border: 2px solid rgba(244,162,41,.25);
}
.navbar-toggler:hover {
  background: rgba(244,162,41,.15);
  border-color: var(--secondary);
  transform: scale(1.05);
}
.navbar-toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.navbar-toggler-icon span {
  display: block; height: 2.5px; background: var(--primary-dark);
  border-radius: 2px; transition: var(--transition);
}
.navbar-toggler.active .navbar-toggler-icon span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--secondary); }
.navbar-toggler.active .navbar-toggler-icon span:nth-child(2) { opacity: 0; }
.navbar-toggler.active .navbar-toggler-icon span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--secondary); }

/* ---- Mobile ---- */
@media (max-width: 991.98px) {
  .topbar { display: none; }
  .navbar-toggler { display: flex; }
  .navbar-collapse {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--primary-dark); z-index: 1060; padding: 72px 24px 32px;
    transition: right .4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,.4); overflow-y: auto;
    display: flex; flex-direction: column;
  }
  .navbar-collapse.open { right: 0; }
  .navbar-collapse::before {
    content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.55);
    z-index: -1; opacity: 0; pointer-events: none; transition: opacity .4s;
  }
  .navbar-collapse.open::before { opacity: 1; pointer-events: auto; }

  .navbar-nav { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav-item { width: 100%; }
  .nav-link {
    padding: 12px 16px !important; border-radius: var(--radius-sm);
    color: rgba(255,255,255,.8) !important; font-size: .8rem; gap: 10px;
    border-left: 3px solid transparent;
  }
  .nav-link::after { display: none; }
  .nav-link:hover {
    color: var(--secondary) !important;
    background: rgba(255,255,255,.05);
    border-left-color: var(--secondary);
  }
  .nav-item.active .nav-link { color: var(--secondary) !important; border-left-color: var(--secondary); }
  .mega-menu {
    position: static !important; transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    box-shadow: none; border: none; padding: 4px 0; min-width: auto;
    background: rgba(255,255,255,.04); backdrop-filter: none;
    border-radius: var(--radius-sm);
  }
  .mega-menu-grid { grid-template-columns: 1fr; gap: 1px; }
  .mega-menu-item { padding: 9px 16px 9px 28px; }
  .mega-menu-item::before, .mega-menu-item::after { display: none; }
  .mega-menu-item:hover { transform: none; background: rgba(255,255,255,.05); }
  .mega-menu-content h6 { color: rgba(255,255,255,.85); font-size: .78rem; }
  .mega-menu-content p { display: none; }
  .mega-menu-icon { width: 28px; height: 28px; min-width: 28px; font-size: .85rem; }
  .nav-cta { margin: 24px 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; border-radius: var(--radius-sm); background: var(--secondary); }
  .navbar-collapse.open .mobile-menu-close { display: flex !important; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(0);
  background: var(--white); border-radius: var(--radius-xl); box-shadow: 0 12px 48px rgba(0,0,0,.15);
  padding: 28px 20px; min-width: 720px; opacity: 0; visibility: hidden;
  transition: all .4s cubic-bezier(0.25, 0.8, 0.25, 1); z-index: 1060;
  border: 1px solid rgba(0,0,0,.04); backdrop-filter: blur(10px);
}
.nav-item.dropdown:hover .mega-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mega-menu-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 16px; border-radius: var(--radius-lg); transition: all .3s ease;
  border: 1px solid transparent; position: relative; overflow: hidden;
}
.mega-menu-item::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(244,162,41,.06), rgba(244,162,41,.01));
  transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
}
.mega-menu-item:hover {
  background: var(--light); border-color: rgba(244,162,41,.2);
  transform: translateX(6px);
}
.mega-menu-item:hover::before { transform: scaleX(1); }
.mega-menu-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(244,162,41,.15), rgba(244,162,41,.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--secondary);
  transition: all .3s ease; box-shadow: 0 4px 12px rgba(244,162,41,.15);
}
.mega-menu-item:hover .mega-menu-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white); transform: scale(1.08); box-shadow: 0 6px 20px rgba(244,162,41,.3);
}
.mega-menu-content h6,
.mega-menu-content > div > strong {
  font-family: var(--font-heading); font-weight: 700; font-size: .9rem;
  color: var(--primary-dark); margin-bottom: 4px; line-height: 1.3;
}
.mega-menu-content p,
.mega-menu-content > div > small {
  font-size: .77rem; color: var(--text-muted); line-height: 1.6; margin: 0;
  transition: color .3s ease; font-weight: 400;
}
.mega-menu-item:hover .mega-menu-content p { color: var(--text-dark); font-weight: 500; }
.mega-menu-item::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; background: var(--secondary); transition: height .3s ease;
  border-radius: 3px;
}
.mega-menu-item:hover::after { height: 40%; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(10,20,35,.88) 0%, rgba(20,45,75,.78) 50%, rgba(244,162,41,.08) 100%),
              url('assets/project-shard.png') center/cover no-repeat;
  transform: scale(1.03); transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,20,35,.4) 80%, rgba(10,20,35,.85) 100%);
}

/* Animated shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%; opacity: .06;
  background: var(--secondary);
  animation: float 8s ease-in-out infinite;
}
.hero-shape:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 250px; height: 250px; bottom: 20%; left: -80px; animation-delay: 2s; }
.hero-shape:nth-child(3) { width: 180px; height: 180px; top: 40%; right: 15%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
}
.hero-inner {
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(244,162,41,.15); border: 1.5px solid rgba(244,162,41,.5);
  color: var(--secondary); padding: 10px 24px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: .75rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.75rem;
  backdrop-filter: blur(16px); animation: fadeInUp .8s ease both;
  box-shadow: 0 4px 24px rgba(244,162,41,.2), inset 0 1px 0 rgba(255,255,255,.15);
  border-left: 4px solid var(--secondary);
  position: relative;
}
.hero-badge::before {
  content: ''; position: absolute; top: -1px; right: -1px;
  width: 12px; height: 12px; background: var(--secondary);
  border-radius: 50%; border: 2px solid rgba(13,27,42,.6);
}
.hero-badge i { font-size: 1rem; }
.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 900; color: var(--white);
  line-height: 1.06; margin-bottom: 1.2rem; letter-spacing: -0.03em;
  animation: fadeInUp .8s ease both .2s;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(.95rem, 1.4vw, 1.1rem); color: rgba(255,255,255,.78);
  line-height: 1.85; max-width: 520px; margin-bottom: 2.2rem;
  animation: fadeInUp .8s ease both .4s;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  animation: fadeInUp .8s ease both .6s;
}
.hero-buttons .btn { min-width: 185px; justify-content: center; }

/* Hero stats bar */
.hero-stats-bar {
  display: flex; gap: 0; margin-top: 3.5rem; animation: fadeInUp .8s ease both .8s;
  background: rgba(255,255,255,.06); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-stat {
  flex: 1; padding: 22px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.08);
  transition: all .3s ease; position: relative;
}
.hero-stat::before {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 2px; background: var(--secondary); transform: scaleX(0);
  transition: transform .3s ease; border-radius: 2px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: rgba(244,162,41,.08); }
.hero-stat:hover::before { transform: scaleX(1); }
.hero-stat-number {
  display: block; font-family: var(--font-heading); font-size: 2rem;
  font-weight: 900; color: var(--secondary); line-height: 1; margin-bottom: 6px;
}
.hero-stat-label {
  font-size: .7rem; color: rgba(255,255,255,.55); text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600;
}

/* Floating badge */
.hero-floating-badge {
  position: absolute; bottom: 12%; right: 6%; z-index: 3;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white);
  padding: 22px 26px; border-radius: var(--radius-xl);
  text-align: center; box-shadow: 0 20px 60px rgba(244,162,41,.45), 0 4px 20px rgba(0,0,0,.15);
  animation: fadeIn .8s ease both 1s;
}
.hero-floating-badge .number {
  display: block; font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 900; line-height: 1;
}
.hero-floating-badge .label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: .9; }
.hero-floating-badge::before {
  content: ''; position: absolute; top: -8px; right: -8px;
  width: 18px; height: 18px; background: var(--white); border-radius: 50%;
  border: 3px solid var(--secondary);
}

/* Hero service page */
.hero.hero-sm { min-height: 60vh; }
.hero.hero-md { min-height: 75vh; }
.hero.hero-service { min-height: 65vh; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.breadcrumb-custom {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; position: relative; z-index: 1;
}
.breadcrumb-custom a { color: var(--secondary); font-size: .88rem; font-weight: 600; }
.breadcrumb-custom a:hover { color: var(--white); }
.breadcrumb-custom .separator { color: rgba(255,255,255,.3); font-size: .75rem; }
.breadcrumb-custom .current { color: rgba(255,255,255,.6); font-size: .88rem; }

.page-header {
  position: relative; padding: 100px 0 70px;
  background: linear-gradient(135deg, rgba(13,27,42,.92) 0%, rgba(26,58,92,.8) 100%),
              url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80') center/cover no-repeat;
  color: var(--white); overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
}
.page-header .breadcrumb {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; position: relative; z-index: 1;
}
.page-header .breadcrumb a { color: var(--secondary); font-size: .88rem; font-weight: 600; }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb .sep { color: rgba(255,255,255,.3); font-size: .75rem; }
.page-header .breadcrumb .current { color: rgba(255,255,255,.6); font-size: .88rem; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; position: relative; z-index: 1; }
.page-header p { color: rgba(255,255,255,.75); font-size: 1rem; margin-top: .5rem; position: relative; z-index: 1; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white); border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-xl); overflow: hidden; transition: all .35s cubic-bezier(0.25,0.8,0.25,1);
  height: 100%; box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.12); transform: translateY(-10px);
  border-color: rgba(244,162,41,.25);
}
.card-img { overflow: hidden; position: relative; height: 230px; }
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card:hover .card-img img { transform: scale(1.1); }
.card-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white); padding: 4px 12px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: .65rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(244,162,41,.4);
}
.card-body { padding: 24px; }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(244,162,41,.12), rgba(244,162,41,.06));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--secondary); margin-bottom: 1rem;
  border: 1px solid rgba(244,162,41,.2);
  transition: all .3s ease;
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white); transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(244,162,41,.3); border-color: transparent;
}
.card-title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800;
  color: var(--primary-dark); margin-bottom: .6rem; line-height: 1.3;
}
.card-text { font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .75rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 700; font-size: .82rem;
  color: var(--secondary); margin-top: .25rem;
  transition: all .25s ease;
}
.card-link i { font-size: .72rem; transition: transform .3s ease; }
.card-link:hover { gap: 10px; color: var(--primary-dark); }
.card-link:hover i { transform: translateX(4px); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: var(--white); padding: 60px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; background: rgba(244,162,41,.07); border-radius: 50%;
}
.stats-section::after {
  content: ''; position: absolute; bottom: -50px; left: -50px;
  width: 260px; height: 260px; background: rgba(244,162,41,.05); border-radius: 50%;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; z-index: 1; }
.stats-item { text-align: center; padding: 24px 16px; position: relative; }
.stats-item::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%;
  width: 1px; background: rgba(255,255,255,.08);
}
.stats-item:last-child::after { display: none; }
.stats-icon { font-size: 1.6rem; color: var(--secondary); opacity: .6; margin-bottom: 10px; display: block; }
.stats-number {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900;
  color: var(--secondary); line-height: 1; display: block; margin-bottom: 8px;
}
.stats-label {
  font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase;
  letter-spacing: 2px; font-weight: 600;
}
@media (max-width: 991.98px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .stats-grid { grid-template-columns: 1fr; } .stats-item::after { display: none; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, rgba(244,162,41,.15) 100%);
  padding: 80px 0; position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; background: rgba(255,255,255,.08); border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 300px; height: 300px; background: rgba(255,255,255,.06); border-radius: 50%;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-banner .btn-dark { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.cta-banner .btn-dark:hover { background: var(--secondary-light); border-color: var(--secondary-light); transform: translateY(-3px); }
.cta-banner .btn-outline-custom { border-color: rgba(255,255,255,.4); color: var(--white); background: rgba(255,255,255,.05); }
.cta-banner .btn-outline-custom:hover { background: var(--white); color: var(--primary-dark); border-color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.06);
  position: relative; transition: var(--transition); height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-xl); transform: translateY(-4px);
  border-color: rgba(244,162,41,.2);
}
.testimonial-card::before {
  content: '\201C'; font-family: Georgia, serif; font-size: 5rem;
  color: var(--secondary); opacity: .15; position: absolute;
  top: 10px; left: 24px; line-height: 1; font-style: italic;
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 1rem; color: var(--secondary);
}
.testimonial-card p {
  font-style: italic; font-size: .98rem; color: var(--text-dark);
  line-height: 1.8; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img,
.testimonial-author .testimonial-avatar,
.testimonial-author > div:first-child {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--secondary);
}
.testimonial-author .testimonial-avatar {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .9rem;
}
.testimonial-author-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author-info .name {
  font-family: var(--font-heading); font-weight: 700; font-size: .95rem;
  color: var(--primary-dark); display: block;
}
.testimonial-author-info .role { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   PROJECT CARDS & GALLERY
   ============================================================ */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991.98px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer;
  border: 2px solid transparent;
  height: 320px;
  transition: border-color .4s ease, box-shadow .4s ease;
}
.project-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px var(--secondary), var(--shadow-xl);
}
.project-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.project-card:hover img {
  transform: scale(1.08);
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0; transition: opacity .4s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
@media (max-width: 767.98px) {
  .project-overlay { opacity: 1 !important; background: linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 60%); }
}
.project-overlay .category {
  font-size: .7rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--secondary); font-weight: 700; margin-bottom: 6px;
}
.project-overlay h4 { color: var(--white); font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.project-overlay .location { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.project-overlay .btn { align-self: flex-start; }

/* Project filters */
.project-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 3rem; }
.filter-btn {
  background: var(--white); border: 2px solid var(--grey-light); color: var(--text-dark);
  font-family: var(--font-heading); font-weight: 700; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .5px; padding: 10px 24px; border-radius: var(--radius-full);
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--secondary); border-color: var(--secondary); color: var(--white);
  box-shadow: 0 8px 24px rgba(244,162,41,.3);
}

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 991.98px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

.area-badge {
  background: var(--white); border: 2px solid var(--grey-light);
  border-radius: var(--radius-md); padding: 14px 10px; text-align: center;
  font-family: var(--font-heading); font-weight: 700; font-size: .8rem;
  color: var(--primary-dark); transition: var(--transition); cursor: default;
}
.area-badge:hover {
  border-color: var(--secondary); background: var(--secondary);
  color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.area-badge.pci {
  background: var(--secondary); border-color: var(--secondary); color: var(--white);
  box-shadow: 0 4px 16px rgba(244,162,41,.3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--grey-light); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: var(--transition);
  background: var(--white);
}
.faq-item:hover { border-color: rgba(244,162,41,.3); }
.faq-item.active { border-color: var(--secondary); box-shadow: 0 4px 20px rgba(244,162,41,.1); }
.faq-question {
  background: var(--white); padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--primary-dark); gap: 16px; transition: var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-toggle {
  width: 36px; height: 36px; background: var(--light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0; font-size: .9rem; color: var(--primary);
}
.faq-item.active .faq-toggle { background: var(--secondary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.active .faq-answer { padding: 0 24px 24px; max-height: 400px; }
.faq-answer p { font-size: .95rem; color: var(--text-muted); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--light); }
.form-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 48px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.04);
}
.form-label {
  font-family: var(--font-heading); font-weight: 700; font-size: .82rem;
  color: var(--primary-dark); text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 8px; display: block;
}
.form-control, .form-select {
  border: 2px solid var(--grey-light); border-radius: var(--radius-sm);
  padding: 14px 16px; font-family: var(--font-body); font-size: .95rem;
  color: var(--text-dark); transition: var(--transition); background: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(244,162,41,.1);
  outline: none;
}
.form-control.is-invalid { border-color: var(--accent); }
textarea.form-control {
  resize: none;
  min-height: 120px;
}
.invalid-feedback { font-size: .8rem; color: var(--accent); }
.form-check-input:checked { background-color: var(--secondary); border-color: var(--secondary); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(244,162,41,.1); }

/* ============================================================
   CONTACT INFO CARD
   ============================================================ */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl); padding: 48px; color: var(--white); height: 100%;
  position: relative; overflow: hidden;
}
.contact-info-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; background: rgba(244,162,41,.08); border-radius: 50%;
}
.contact-info-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-info-card > p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon {
  width: 52px; height: 52px; min-width: 52px; background: var(--secondary);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); flex-shrink: 0;
}
.contact-info-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.6; }
.contact-info-item a { color: rgba(255,255,255,.8); }
.contact-info-item a:hover { color: var(--secondary); }

/* ============================================================
   MAP
   ============================================================ */
.map-container { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); height: 480px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary-dark); color: rgba(255,255,255,.65); padding: 80px 0 0;
}
footer h5 {
  color: var(--white); font-size: .95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.5rem;
}
footer ul { padding: 0; margin: 0; }
footer ul li { margin-bottom: 12px; }
footer ul li a {
  color: rgba(255,255,255,.55); font-size: .9rem; display: flex; align-items: center; gap: 8px;
  transition: var(--transition); padding: 4px 0;
}
footer ul li a:hover { color: var(--secondary); padding-left: 6px; }
.footer-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
  font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem; color: var(--white);
}
.footer-brand img {
  height: 44px; width: auto;
  border-radius: 10px;
}
footer p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 1.5rem; }
.footer-social a {
  width: 42px; height: 42px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);
  font-size: .9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(244,162,41,.3); }
.footer-bottom {
  margin-top: 60px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer-bottom a:hover { color: var(--secondary); }

/* ============================================================
   OVERLINE / HERO OVERLINE (reusable)
   ============================================================ */
.hero-overline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,162,41,.1); border: 1px solid rgba(244,162,41,.25);
  color: var(--secondary); padding: 6px 18px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: .75rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero-overline i { font-size: 1rem; }
.hero-overline.mx-auto { display: flex; }

/* ============================================================
   CARD CUSTOM (alternative card style)
   ============================================================ */
.card-custom {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition); height: 100%;
}
.card-custom:hover {
  box-shadow: var(--shadow-xl); transform: translateY(-8px);
  border-color: rgba(244,162,41,.2);
}
.card-custom img.card-img-top { width: 100%; height: 220px; object-fit: cover; }
.card-custom .card-body { padding: 28px 28px 28px; }

/* ============================================================
   NAV TABS CUSTOM
   ============================================================ */
.nav-tabs-custom {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  list-style: none; padding: 0; margin: 0 0 3rem;
}
.nav-tabs-custom .nav-link {
  background: var(--white); border: 2px solid var(--grey-light);
  color: var(--text-dark); font-family: var(--font-heading); font-weight: 700;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .5px;
  padding: 10px 24px; border-radius: var(--radius-full);
  transition: var(--transition); cursor: pointer;
}
.nav-tabs-custom .nav-link:hover,
.nav-tabs-custom .nav-link.active {
  background: var(--secondary); border-color: var(--secondary); color: var(--white);
  box-shadow: 0 8px 24px rgba(244,162,41,.3);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-form-section { padding: 100px 0; background: var(--light); }
.info-icon {
  width: 52px; height: 52px; min-width: 52px; background: var(--secondary);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); flex-shrink: 0;
}

/* ============================================================
   ACCREDITATIONS GRID (alternative)
   ============================================================ */
.accred-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }

/* ============================================================
   PROGRESS BAR CUSTOM (project detail pages)
   ============================================================ */
.progress-custom { background: var(--grey-light); border-radius: 8px; height: 8px; overflow: hidden; margin-top: 8px; }
.progress-bar-custom { background: linear-gradient(90deg, var(--secondary), var(--secondary-light)); border-radius: 8px; height: 100%; }

/* ============================================================
   CHECK ICONS
   ============================================================ */
.check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: var(--secondary); border-radius: 50%; color: var(--white); font-size: .7rem; margin-right: 10px; flex-shrink: 0; }


/* ============================================================
   BUTTONS (alternative naming)
   ============================================================ */
.btn-primary-custom {
  background: var(--secondary); color: var(--white); border: none;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius-sm); font-family: var(--font-heading);
  font-weight: 700; font-size: .9rem; letter-spacing: .5px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); text-decoration: none; gap: 8px; white-space: nowrap;
}
.btn-primary-custom:hover { background: var(--secondary-light); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(244,162,41,.35); color: var(--white); }

/* ============================================================
   TEAM CARDS (card-custom variant)
   ============================================================ */
.team-card { overflow: hidden; border-radius: var(--radius-lg); }
.team-img-wrap { overflow: hidden; position: relative; }
.team-img {
  width: 100%; height: 300px; object-fit: cover;
  transition: transform .6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.team-card:hover .team-img { transform: scale(1.06); }
.team-social-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(to top, rgba(13,27,42,.9), transparent);
  display: flex; justify-content: center; gap: 8px; opacity: 0; transition: var(--transition);
}
.team-card:hover .team-social-overlay { opacity: 1; }
.team-social-overlay a {
  width: 36px; height: 36px; background: var(--secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-size: .8rem; transform: translateY(10px); transition: var(--transition);
}
.team-card:hover .team-social-overlay a { transform: translateY(0); }
.team-social-overlay a:nth-child(2) { transition-delay: .05s; }
.team-social-overlay a:nth-child(3) { transition-delay: .1s; }
.team-info { padding: 24px; }
.team-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info .role {
  color: var(--secondary); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem;
}
.team-info p { font-size: .88rem; color: var(--text-muted); }

/* ============================================================
   ACCREDITATIONS
   ============================================================ */
.accred-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.accred-card {
  background: var(--white); border: 2px solid var(--grey-light); border-radius: var(--radius-lg);
  padding: 20px 28px; text-align: center; min-width: 150px;
  transition: var(--transition); cursor: default;
}
.accred-card:hover {
  border-color: var(--secondary); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.accred-icon { font-size: 2rem; color: var(--primary); margin-bottom: 8px; display: block; }
.accred-card:hover .accred-icon { color: var(--secondary); }
.accred-card p { font-size: .78rem; font-weight: 700; color: var(--primary-dark); }

/* ============================================================
   VALUE CARDS
   ============================================================ */
.value-card {
  display: flex; gap: 20px; align-items: flex-start; padding: 28px;
  border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition); background: var(--white); height: 100%;
}
.value-card:hover {
  border-color: var(--secondary); box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.value-icon {
  width: 56px; height: 56px; min-width: 56px; background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); flex-shrink: 0;
}
.value-card h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.value-card p { font-size: .88rem; line-height: 1.7; }

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.service-detail { padding: 100px 0; }
.service-detail img {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl);
  width: 100%; height: 100%; object-fit: cover; max-height: 500px;
}
.service-detail h2 { font-size: 2rem; margin-bottom: 1rem; }
.service-detail h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 1rem; color: var(--primary); }
.service-detail ul { padding: 0; }
.service-detail li {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px;
  color: var(--text-muted); font-size: .95rem;
}
.service-check {
  width: 24px; height: 24px; min-width: 24px; background: var(--secondary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .7rem; margin-top: 3px; flex-shrink: 0;
}

/* Service sidebar */
.service-sidebar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl); padding: 36px; color: var(--white);
}
.service-sidebar h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 1.25rem; }
.service-sidebar a {
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.75);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem; transition: var(--transition);
}
.service-sidebar a:last-child { border-bottom: none; }
.service-sidebar a:hover { color: var(--secondary); padding-left: 8px; }
.service-sidebar a i { font-size: .75rem; margin-left: auto; }

/* ============================================================
   SITEMAP
   ============================================================ */
.sitemap ul { padding: 0; }
.sitemap > ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 575.98px) { .sitemap > ul { grid-template-columns: 1fr; } }
.sitemap ul li a {
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  background: var(--light); border-radius: var(--radius-sm);
  color: var(--primary-dark); font-family: var(--font-heading); font-weight: 600;
  font-size: .9rem; transition: var(--transition);
}
.sitemap ul li a:hover { background: var(--secondary); color: var(--white); transform: translateX(6px); }
.sitemap ul li a i { font-size: .75rem; color: var(--secondary); }
.sitemap ul li a:hover i { color: var(--white); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--light); padding: 28px 0;
  border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light);
}
.trust-strip h3 { font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--grey-mid); font-weight: 700; text-align: center; margin-bottom: 1.2rem; }
.trust-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; align-items: center; }
.trust-logo-text {
  font-family: var(--font-heading); font-weight: 900; font-size: .9rem;
  color: var(--primary-dark); opacity: .22; letter-spacing: 1.5px;
  transition: var(--transition); cursor: default; text-transform: uppercase;
}
.trust-logo-text:hover { opacity: .55; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-section { margin-top: 2rem; margin-bottom: 1.5rem; }
.ba-section h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.ba-slider {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  cursor: col-resize; user-select: none;
}
.ba-slider img { width: 100%; display: block; }
.ba-before { position: absolute; inset: 0; overflow: hidden; }
.ba-before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after img { width: 100%; display: block; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 4px; background: var(--white);
  cursor: col-resize; z-index: 10; left: 50%;
  box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.ba-handle-line {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 2px; height: 60%;
  background: rgba(244,162,41,.6);
}
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 44px; height: 44px;
  background: var(--white); border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
}
.ba-handle-circle::after {
  content: '\2194'; font-size: 1rem; color: var(--primary-dark); font-weight: 900;
}
.ba-label {
  position: absolute; top: 16px; z-index: 5;
  background: rgba(13,27,42,.7); color: var(--white);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(6px);
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* ============================================================
   ICON CARD (process/values — single definition)
   ============================================================ */
.icon-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.icon-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); border-color: var(--secondary); }
.icon-card .icon {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(244,162,41,.12), rgba(244,162,41,.04));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--secondary); transition: var(--transition);
}
.icon-card:hover .icon { background: var(--secondary); color: var(--white); transform: scale(1.1); }
.icon-card:hover .icon-circle { background: var(--secondary); color: var(--white); transform: scale(1.1); }
.icon-circle {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(244,162,41,.12), rgba(244,162,41,.04));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--secondary); transition: var(--transition);
}
.icon-card h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.icon-card p { font-size: .88rem; line-height: 1.7; }

/* ============================================================
   ICON CARD — left-aligned variant (Why Choose Us section)
   ============================================================ */
.icon-card-left {
  background: var(--white); border-radius: var(--radius-lg); padding: 20px;
  text-align: left; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.icon-card-left:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--secondary); }
.icon-card-left .icon {
  width: 48px; height: 48px; margin: 0 0 12px 0;
  background: linear-gradient(135deg, rgba(244,162,41,.12), rgba(244,162,41,.04));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--secondary); transition: var(--transition);
  flex-shrink: 0;
}
.icon-card-left h4 { font-size: .95rem; margin-bottom: .5rem; color: var(--primary-dark); }
.icon-card-left p { font-size: .82rem; line-height: 1.7; color: var(--text-muted); margin: 0; }
.icon-card-left:hover .icon { background: var(--secondary); color: var(--white); transform: scale(1.1); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: .75rem; color: var(--primary-dark); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-top: .5rem; }
.legal-content ul li { margin-bottom: 10px; font-size: .95rem; color: var(--text-muted); }

/* ============================================================
   PROGRESS BARS
   ============================================================ */
.scope-item { margin-bottom: 20px; }
.scope-label {
  display: flex; justify-content: space-between; font-family: var(--font-heading);
  font-weight: 700; font-size: .88rem; color: var(--primary-dark); margin-bottom: 8px;
}
.progress-bar-wrap {
  background: var(--grey-light); border-radius: 8px; height: 8px; overflow: hidden;
}
.progress-bar-fill {
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 8px; height: 100%; transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================
   WHATSAPP / CHAT FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 1090;
}
.whatsapp-btn {
  width: 60px; height: 60px; background: #25D366; color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition); text-decoration: none; position: relative;
}
.whatsapp-btn:hover {
  background: #20BA5C; transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,.5);
}
.whatsapp-btn::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366; opacity: .3;
  animation: whatsappPulse 2s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.15); opacity: .1; }
}
.whatsapp-label {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--white); color: var(--primary-dark);
  padding: 8px 16px; border-radius: var(--radius-sm); font-family: var(--font-heading);
  font-weight: 700; font-size: .82rem; white-space: nowrap;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; visibility: visible; right: 76px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1080;
  background: var(--primary-dark); color: var(--white); padding: 20px 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,.2);
  transform: translateY(100%); transition: transform .5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h6 { color: var(--white); font-size: .95rem; margin-bottom: 4px; }
.cookie-text p { color: rgba(255,255,255,.65); font-size: .85rem; margin: 0; }
.cookie-text a { color: var(--secondary); }
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions .btn { padding: 10px 24px; font-size: .82rem; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 100px; right: 32px; width: 48px; height: 48px;
  background: var(--secondary); color: var(--white); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  cursor: pointer; z-index: 1095; opacity: 0; visibility: hidden;
  transition: var(--transition); box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* Skip to content — visually hidden until focused */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: top .3s ease;
}
.skip-to-content:focus {
  top: 16px;
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.visible.delay-1 { transition-delay: .1s; }
.animate-on-scroll.visible.delay-2 { transition-delay: .2s; }
.animate-on-scroll.visible.delay-3 { transition-delay: .3s; }
.animate-on-scroll.visible.delay-4 { transition-delay: .4s; }

/* Loading spinner */
.spinner {
  width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white); border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section-padding { padding: 72px 0; }
.section-padding-sm { padding: 44px 0; }
.section-padding-lg { padding: 96px 0; }
/* Tighten Bootstrap mb-5 in sections */
.section-padding .mb-5 { margin-bottom: 2rem !important; }
.bg-light { background: var(--light) !important; }
.bg-white { background: var(--white) !important; }
.bg-dark { background: var(--primary-dark) !important; }
.bg-primary { background: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 800; }

/* ============================================================
   BADGES & CHIPS
   ============================================================ */
.badge-custom {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.badge-custom.secondary { background: var(--secondary); color: var(--white); }
.badge-custom.primary { background: var(--primary); color: var(--white); }
.badge-custom.dark { background: var(--primary-dark); color: var(--white); }
.badge-custom.outline { background: transparent; border: 2px solid currentColor; }

/* Alert messages */
.alert-success-custom {
  background: #d4edda; border: 1px solid #c3e6cb; border-radius: var(--radius-md);
  padding: 20px 24px; color: #155724; font-weight: 600; margin-bottom: 1.5rem;
}
.alert-error-custom {
  background: #f8d7da; border: 1px solid #f5c6cb; border-radius: var(--radius-md);
  padding: 20px 24px; color: #721c24; font-weight: 600; margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 1199.98px) {
  .hero-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
  .hero-floating-badge { right: 2%; }
}
@media (max-width: 991.98px) {
  .hero-stats-bar { flex-wrap: wrap; border-radius: var(--radius-md); }
  .hero-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .section-padding { padding: 70px 0; }
  .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
  .hero-floating-badge { display: none; }
}
@media (max-width: 767.98px) {
  .hero-stats-bar { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .btn-group-custom { flex-direction: column; }
  .btn-group-custom .btn { width: 100%; }
  .section-padding { padding: 50px 0; }
}
@media (max-width: 575.98px) {
  .section-title { font-size: 1.5rem; }
  .row.g-5 { --bs-gutter-x: 1.5rem; }
  .hero { min-height: auto; padding: 86px 0 64px; }
  .hero-title { font-size: 2.15rem; line-height: 1.12; }
  .hero-badge,
  .overline,
  .hero-overline {
    width: 100%;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
  }
  .page-header { padding: 72px 0 52px; }
  .breadcrumb-custom { flex-wrap: wrap; row-gap: 4px; }
  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn-lg { padding: 14px 22px; font-size: .85rem; }
  .navbar-brand img { max-height: 48px; }
  .project-card { height: 280px; border-radius: var(--radius-md); }
  .project-overlay { padding: 22px; }
  .testimonial-card { padding: 28px 22px; border-radius: var(--radius-md); }
  .map-container { height: 360px; border-radius: var(--radius-md); }
  .filter-btn,
  .nav-tabs-custom .nav-link {
    width: 100%;
    justify-content: center;
  }
  .whatsapp-float { right: 18px; bottom: 20px; }
  .whatsapp-btn { width: 56px; height: 56px; font-size: 1.6rem; }
  .scroll-top { right: 22px; bottom: 88px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 28px 20px; }
  .contact-info-card { padding: 32px 24px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}

/* ============================================================
   SCROLL SPY / STICKY ELEMENTS
   ============================================================ */
.sticky-side {
  position: sticky; top: 120px;
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-steps { display: flex; gap: 0; position: relative; }
.process-step {
  flex: 1; text-align: center; position: relative; padding: 0 20px;
}
.process-step::before {
  content: ''; position: absolute; top: 36px; left: 50%; right: -50%;
  height: 2px; background: var(--grey-light); z-index: 0;
}
.process-step:last-child::before { display: none; }
.process-icon {
  width: 72px; height: 72px; margin: 0 auto 20px; position: relative; z-index: 1;
  background: var(--white); border: 3px solid var(--secondary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--secondary);
  transition: var(--transition);
}
.process-step:hover .process-icon { background: var(--secondary); color: var(--white); }
.process-number {
  position: absolute; top: -8px; right: 20%; z-index: 2;
  width: 24px; height: 24px; background: var(--primary-dark); color: var(--white);
  border-radius: 50%; font-size: .7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 767.98px) {
  .process-steps { flex-direction: column; gap: 24px; }
  .process-step::before { display: none; }
}


/* ============================================================
   FOCUS VISIBLE — keyboard navigation indicator
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove default outline when mouse-clicked */
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   AUTHENTIC LOW-RES PROJECT IMAGE PRESERVATION
   Frames the small PDF presentation images beautifully in a
   premium deep-slate border to prevent scaling and pixelation.
   ============================================================ */

/* Main Hero Image on Project and Service Detail Pages */
.col-lg-8 > img.img-fluid.rounded.shadow-lg.mb-4.w-100 {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 400px !important;
  object-fit: contain !important;
  margin: 0 auto 1.5rem auto !important;
  display: block !important;
  background: #0b132b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
}

/* Secondary/Gallery Images in Project Details */
.row.g-3.mt-4 img.img-fluid.rounded,
.row.g-3 img.img-fluid.rounded {
  width: auto !important;
  max-width: 100% !important;
  height: 200px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  background: #0b132b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px;
}

/* Service Cards on Home Page */
.card-img {
  background: var(--primary-dark) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.card-img img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  align-self: stretch !important;
  margin: 0 !important;
}

/* Service Card Image Wrapper (Homepage) */
.service-card-img-wrap {
  position: relative; overflow: hidden;
  height: 240px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card-img-wrap img { transition: transform .7s cubic-bezier(0.25, 0.8, 0.25, 1); }
.service-card-img-wrap:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.15) 0%, transparent 40%);
}
.service-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white); padding: 5px 14px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: .65rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(244,162,41,.35);
}
a.text-decoration-none:hover > div:last-child {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
a.text-decoration-none { display: block; }

/* Service Cards on Services Page */
.card-custom {
  display: flex !important;
  flex-direction: column !important;
  background: var(--white) !important;
}
.card-custom img.card-img-top {
  width: auto !important;
  height: 200px !important;
  max-width: 90% !important;
  max-height: 85% !important;
  object-fit: contain !important;
  align-self: center !important;
  margin: 15px auto 0 auto !important;
  background: #0b132b;
  border-radius: var(--radius-md) !important;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* About Page Concrete Team & Site Showcase Images */
.col-lg-6 > img.img-fluid.rounded.shadow-lg[src*="wimbledon"],
.col-6 > img.img-fluid.rounded.shadow-sm[src*="paddington"],
.col-6 > img.img-fluid.rounded.shadow-sm[src*="newhurst"] {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 320px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  background: #0b132b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px;
}
.col-6 > img.img-fluid.rounded.shadow-sm[src*="paddington"],
.col-6 > img.img-fluid.rounded.shadow-sm[src*="newhurst"] {
  height: 160px !important;
}
