:root {
  /* Premium Colors */
  --primary-color: #0d0d0d;       /* Almost Black */
  --secondary-color: #1a1a1a;     /* Dark Charcoal */
  --accent-color: #f9b317;        /* Logo Gold */
  --accent-hover: #ffc742;        /* Light Logo Gold */
  --text-color: #333333;
  --text-light: #777777;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --border-color: #e5e5e5;
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--primary-color);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 50px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* --- Premium Header --- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 992px) {
  header {
    position: fixed;
  }
}

header.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

header.scrolled .logo img {
  filter: none;
}

header .container,
header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav {
  margin-left: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 55px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

header.scrolled .logo img {
  height: 48px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.3px;
  padding: 10px 18px;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Modern underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Premium CTA Button */
.nav-cta {
  margin-left: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-nav-primary {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  background: var(--accent-color);
  padding: 11px 28px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(249, 179, 23, 0.25);
}

.btn-nav-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 179, 23, 0.4);
  color: var(--primary-color);
}

.btn-nav-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(249, 179, 23, 0.3);
}

/* --- Cinematic Hero --- */
.hero-cinematic {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #000;
  overflow: hidden;
}

/* Stacked real slides — smooth crossfade */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 8s ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* removed ::before pseudo-element transition approach */

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.6; /* Dim video */
  display: none; /* Hide if no video */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%),
              linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 20px 20px 20px 60px;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 20px;
    text-align: left;
  }
}

.eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--accent-color);
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.btn-gold {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 15px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 6px;
}

.btn-gold:hover {
  background-color: var(--accent-hover);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hero-ghost {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 6px;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Hero Image Credit */
.hero-image-credit {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.hero-image-credit .project-name {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-align: left;
}

.hero-image-credit .project-location {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
}

/* Hero Carousel Navigation */
.hero-carousel-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--accent-color);
  width: 30px;
  border-radius: 5px;
}

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Carousel transition effect — now handled by .hero-slide opacity */

/* --- Sections Common --- */
.section {
  padding: 120px 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.split-heading .line-light,
.split-heading .line-bold {
  display: block;
}

.split-heading .line-light {
  font-weight: 300;
}

.split-heading .line-bold {
  font-weight: 800;
}

.brand-primary-text {
  color: var(--accent-color);
}

.text-gold {
  color: var(--accent-color);
}

.section-title .highlight {
  font-weight: 800;
  display: block;
}

.section-subtitle {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
}


/* --- Editorial Intro --- */
.intro-editorial {
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.intro-editorial .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 300;
}

.link-arrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.link-arrow .arrow {
  transition: transform 0.3s;
}

.link-arrow:hover .arrow {
  transform: translateX(5px);
}

/* --- Premium Expertise --- */
.bg-dark {
  background-color: var(--primary-color);
}

.text-white {
  color: var(--white);
}

.expertise-premium h2 {
  color: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
}

.expertise-card {
  padding: 40px 30px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: all 0.4s ease;
}

.expertise-card:last-child {
  border-right: none;
}

.expertise-card:hover {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-5px);
}

.card-num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  opacity: 0.7;
}

.expertise-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.expertise-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.plus-link {
  font-size: 1.5rem;
  color: var(--accent-color);
}


/* --- Project Spotlight --- */
.project-spotlight {
  padding: 0;
  display: flex;
  height: 80vh; 
}

.spotlight-image {
  flex: 6;
  position: relative;
  overflow: hidden;
}

.bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}

.spotlight-image:hover .bg-img {
  transform: scale(1.05); /* Slow zoom effect */
}

.spotlight-content {
  flex: 4;
  background: rgba(249, 249, 249, 0.85);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-cat {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.spotlight-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.spotlight-content p {
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 400px;
}

.project-stats {
  list-style: none;
  margin-bottom: 50px;
}

.project-stats li {
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
}

.project-stats li strong {
  font-weight: 600;
  color: var(--primary-color);
  flex-shrink: 0;
}

.project-stats li span {
  color: var(--text-light);
  text-align: right;
}

.btn-outline-dark {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 15px 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  max-width: 200px;
}

.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ── Stats Editorial (replaces stats-premium AT A GLANCE) ── */
.stats-editorial {
  background: #ffffff;
  padding: 90px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.stats-editorial-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}

.stats-editorial-label .section-subtitle {
  display: block;
  margin-bottom: 12px;
}

.stats-editorial-label p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 260px;
}

.stats-editorial-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.stat-ed {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-ed-num {
  display: block;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-ed-num sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 700;
}

.stat-ed-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.stat-ed-divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
  align-self: stretch;
  flex-shrink: 0;
  margin: 10px 0;
}

@media (max-width: 1024px) {
  .stats-editorial-inner { grid-template-columns: 1fr; gap: 50px; }
  .stats-editorial-label p { max-width: 100%; }
  .stats-editorial-row { flex-wrap: wrap; gap: 30px; }
  .stat-ed-divider { display: none; }
  .stat-ed { flex: 0 0 calc(33% - 20px); }
}

@media (max-width: 600px) {
  .stat-ed { flex: 0 0 calc(50% - 15px); }
  .stats-editorial-label { text-align: center; }
  .stats-editorial-label p { max-width: none; }
}

/* --- CTA --- */
.cta-premium {
  padding: 120px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
}

.cta-premium h2 {
  color: var(--white);
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-gold-outline {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 15px 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.btn-gold-outline:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

/* --- Modern Footer --- */
.footer-modern {
  background-color: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  font-size: 0.9rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 0px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-col {
  padding-left: 50px;
  padding-right: 50px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.footer-col:first-child {
  padding-left: 0;
  padding-right: 50px;
  border-left: none;
}

.footer-col:last-child {
  padding-right: 0;
}

.footer-about {
  max-width: 320px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
}



.footer-about p {
  line-height: 1.8;
  font-size: 0.9rem;
}

.read-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--accent-hover);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '—';
  color: var(--accent-color);
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

.footer-contact .contact-item {
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.footer-contact .contact-item:first-child {
  display: block;
  margin-bottom: 25px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact h5 {
  color: var(--white);
  font-size: 0.85rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cta a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-cta a:hover {
  color: var(--white);
}

.arrow-double {
  font-size: 2.5rem;
  transition: transform 0.3s;
}

.footer-cta a:hover .arrow-double {
  transform: translateX(10px);
}

.footer-social-section h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  color: var(--white);
  transition: all 0.3s;
  font-size: 0.9rem;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-copyright {
  padding: 30px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-copyright p {
  margin: 0;
}

/* --- About Page --- */
.about-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0d0d0d 100%);
  color: var(--white);
  padding: 180px 0 120px;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(249, 179, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-kicker {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
  font-weight: 600;
}

.about-hero h1 {
  color: var(--white);
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* --- Contact Page --- */
.contact-hero {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 55%, #0d0d0d 100%);
}

/* ── Contact Section Wrapper ── */
.ctc-section {
  padding: 0;
  background: var(--primary-color);
}

.ctc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

/* ── Info Panel ── */
.ctc-info {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
}

.ctc-info-inner {
  flex: 1;
  padding: 72px 56px 48px;
  display: flex;
  flex-direction: column;
}

.ctc-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.ctc-eyebrow--gold {
  color: var(--accent-color);
}

.ctc-info-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.ctc-info-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 44px;
}

/* ── Contact Rows ── */
.ctc-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 44px;
}

.ctc-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.ctc-row--link {
  cursor: pointer;
}

.ctc-row--link:hover .ctc-row-value {
  color: var(--accent-color);
}

.ctc-row--link:hover .ctc-row-arrow {
  transform: translateX(5px);
  color: var(--accent-color);
}

.ctc-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(249, 179, 23, 0.12);
  border: 1px solid rgba(249, 179, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.ctc-row-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ctc-row-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.ctc-row-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}

.ctc-row-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* ── Social ── */
.ctc-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
}

.ctc-social-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.ctc-social-icons {
  display: flex;
  gap: 10px;
}

.ctc-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.ctc-social-icons a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(249, 179, 23, 0.1);
}

/* ── World Map Band ── */
.ctc-world-band {
  background: #0a0a0a;
  padding: 72px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.ctc-world-band::before,
.ctc-world-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  z-index: 2;
  pointer-events: none;
}

.ctc-world-band::before {
  left: 0;
  background: linear-gradient(to right,
    #0a0a0a 0%,
    rgba(10, 10, 10, 0.85) 35%,
    rgba(10, 10, 10, 0.4) 65%,
    transparent 100%
  );
}

.ctc-world-band::after {
  right: 0;
  background: linear-gradient(to left,
    #0a0a0a 0%,
    rgba(10, 10, 10, 0.85) 35%,
    rgba(10, 10, 10, 0.4) 65%,
    transparent 100%
  );
}

.ctc-world-header {
  text-align: center;
  padding: 0 24px 48px;
}

.ctc-world-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-top: 12px;
}

.ctc-world-heading .text-gold {
  color: var(--accent-color);
}

.ctc-world-map {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.ctc-world-svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .ctc-world-band {
    padding: 52px 0 0;
  }
}

/* ── Map Strip ── */
.ctc-map-strip {
  height: 260px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  flex-shrink: 0;
}

/* ── Form Panel ── */
.ctc-form-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 72px 56px 64px;
  justify-content: flex-start;
}

.ctc-form-header {
  margin-bottom: 40px;
}

.ctc-form-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 14px;
  margin-top: 10px;
}

.ctc-form-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Floating Label Form ── */
.ctc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.ctc-field {
  position: relative;
}

.ctc-field--full {
  grid-column: span 2;
}

.ctc-field input,
.ctc-field textarea {
  font-family: var(--font-body);
  width: 100%;
  padding: 22px 0 10px;
  border: none;
  border-bottom: 1.5px solid rgba(13, 13, 13, 0.18);
  border-radius: 0;
  background: transparent;
  font-size: 0.95rem;
  color: var(--primary-color);
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

.ctc-field textarea {
  resize: vertical;
  min-height: 100px;
}

.ctc-field input:focus,
.ctc-field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.ctc-field label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.38);
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

/* Float label when input is filled or focused */
.ctc-field input:not(:placeholder-shown) ~ label,
.ctc-field textarea:not(:placeholder-shown) ~ label,
.ctc-field input:focus ~ label,
.ctc-field textarea:focus ~ label {
  top: 2px;
  font-size: 0.62rem;
  color: var(--accent-color);
  letter-spacing: 2px;
}

.ctc-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

/* ── Form Footer ── */
.ctc-form-footer {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ctc-note {
  color: var(--text-light);
  font-size: 0.85rem;
}

.ctc-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 13, 13, 0.2);
  transition: color 0.2s, border-color 0.2s;
}

.ctc-note a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.ctc-submit {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ctc-info-inner {
    padding: 56px 40px 40px;
  }

  .ctc-form-panel {
    padding: 56px 40px 56px;
  }
}

@media (max-width: 820px) {
  .ctc-split {
    grid-template-columns: 1fr;
  }

  .ctc-info-inner {
    padding: 56px 32px 40px;
  }

  .ctc-map-strip {
    height: 180px;
  }

  .ctc-form-panel {
    padding: 52px 32px 56px;
  }
}

@media (max-width: 600px) {
  .ctc-form {
    grid-template-columns: 1fr;
  }

  .ctc-field--full {
    grid-column: span 1;
  }

  .ctc-form-footer {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .ctc-submit {
    width: 100%;
    justify-content: center;
  }

  .ctc-info-inner {
    padding: 44px 24px 36px;
  }

  .ctc-form-panel {
    padding: 44px 24px 52px;
  }
}

.about-overview {
  background: var(--white);
  position: relative;
}

.about-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-intro-card {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.intro-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 6px 18px;
  background: rgba(249, 179, 23, 0.08);
  border-radius: 20px;
}

.about-intro-card h2 {
  margin-bottom: 24px;
  font-size: 2.5rem;
  font-weight: 300;
}

.about-intro-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.about-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-feature-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent-color);
  transition: height 0.4s ease;
}

.about-feature-card:hover::before {
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  color: var(--white);
  margin-bottom: 20px;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(249, 179, 23, 0.3);
}

.about-feature-card h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 600;
}

.about-feature-card p + p {
  margin-top: 10px;
}

.about-pillars .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-pillars .section-header h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 16px;
}

.about-pillars .section-header p {
  color: var(--text-light);
}

.about-card-grid {
  display: grid;
  gap: 24px;
}

.about-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card-grid-5 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(249, 179, 23, 0.4);
}

.value-icon {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.value-icon.small {
  font-size: 22px;
}

.value-card h3,
.value-card h4 {
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  color: var(--text-light);
}

.about-values-wrap {
  margin-top: 60px;
  position: relative;
  padding-top: 40px;
}

.values-divider {
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.about-values-wrap > h3 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
}

.value-card-compact {
  padding: 28px 24px;
}

.about-sectors {
  background: var(--off-white);
}

.about-sectors .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-sectors .section-header h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 16px;
}

.about-sectors .value-card {
  background: var(--white);
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.about-sectors a.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-sectors .value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}

.about-sectors .value-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.subsidiary-logo {
  max-width: 120px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.about-card-grid-3 {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.subsidiaries-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.subsidiary-card-full {
  display: flex;
  gap: 30px;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.subsidiary-card-full:hover {
  box-shadow: 0 0 0 2px var(--accent-color), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.subsidiary-link {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.subsidiary-link svg {
  transition: all 0.3s ease;
}

.subsidiary-logo-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.subsidiary-logo-wrapper img {
  max-width: 140px;
  height: auto;
}

.subsidiary-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.subsidiary-content h3 svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.subsidiary-link:hover svg {
  opacity: 1;
  stroke-width: 2.5;
}

.subsidiary-card-full:hover .subsidiary-content h3 svg {
  opacity: 0.8;
}

.subsidiary-content p {
  color: var(--text-light);
  line-height: 1.8;
}

.bg-light {
  background: var(--off-white);
}

/* --- Projects Grid --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--off-white);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.6), rgba(249, 179, 23, 0.3));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.project-category {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.project-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.project-detail {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.detail-value {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.project-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: 1fr 1fr;
    border-top: none;
  }
  .expertise-card {
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .project-spotlight {
    flex-direction: column;
    height: auto;
  }
  .spotlight-image {
    height: 400px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .stat-box {
    min-height: 200px;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-intro-card h2 {
    font-size: 2rem;
  }

  .about-two-col {
    grid-template-columns: 1fr;
  }

  .about-card-grid-3,
  .about-card-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .about-pillars .section-header h2,
  .about-sectors .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none; /* Mobile menu logic needed */
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-box {
    min-height: auto;
  }
  
  .stat-box .big-num {
    font-size: 2.8rem;
  }

  .stats-shell {
    padding: 30px 20px;
  }

  .stats-intro h2 {
    font-size: 1.75rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-cta a {
    font-size: 1.5rem;
  }

  .about-hero {
    padding: 150px 0 90px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }
  
  .about-intro-card h2 {
    font-size: 1.6rem;
  }
  
  .about-intro-card p {
    font-size: 1rem;
  }

  .about-intro-card,
  .about-feature-card,
  .value-card {
    padding: 24px;
  }
  
  .about-feature-card {
    padding: 30px 24px;
  }

  .about-card-grid-3,
  .about-card-grid-5 {
    grid-template-columns: 1fr;
  }
  
  .about-pillars .section-header h2,
  .about-sectors .section-header h2 {
    font-size: 1.8rem;
  }
  
  .about-values-wrap > h3 {
    font-size: 1.4rem;
  }
}

/* --- Projects Controls (Search & Count) --- */
.projects-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 16px;
}

.search-box input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(249, 179, 23, 0.1);
}

.projects-count {
  font-size: 15px;
  color: #666;
  white-space: nowrap;
}

.projects-count span {
  font-weight: 600;
  color: var(--dark-bg);
}

/* --- Pagination Controls --- */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.pagination-btn {
  padding: 10px 20px;
  border: 2px solid #e0e0e0;
  background: white;
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: white;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 6px;
  align-items: center;
}

.page-number {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 2px solid #e0e0e0;
  background: white;
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-number:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: white;
}

.page-number.active {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: white;
}

.pagination-ellipsis {
  padding: 0 8px;
  color: #888;
  font-size: 18px;
}

/* --- New Projects List (Horizontal Cards) --- */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px; /* Limit width for horizontal list */
  margin: 0 auto;
}

.project-card.horizontal {
  display: flex;
  flex-direction: row;
  min-height: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Lighter shadow */
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card.horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-card.horizontal .project-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card.horizontal .project-image {
  flex: 1;
  width: 50%; /* Ensure image takes half */
  height: auto; /* Fill height */
  min-height: 100%;
}

.project-card.horizontal .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Project Header & Status */
.project-header {
  margin-bottom: 25px;
}

.project-status {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(13, 13, 13, 0.1); /* Subtle badge */
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.project-status.completed {
  background: rgba(46, 204, 113, 0.15);
  color: #27ae60;
}

.project-status.planning {
  background: rgba(52, 152, 219, 0.15);
  color: #2980b9;
}

.project-title {
  font-size: 2.2rem;
  margin-bottom: 5px;
  line-height: 1.1;
  color: var(--primary-color);
}

.project-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

/* Tags */
.project-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tag {
  background: var(--off-white);
  color: var(--text-color);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
}

/* Specs Grid */
.project-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-item i {
  color: var(--accent-color); /* Use gold accent */
  font-size: 1.2rem;
}

.spec-item span {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* Footer: Price & Actions */
.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.project-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.project-actions {
  display: flex;
  gap: 15px;
}

.btn-enquire {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-enquire:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-view {
  padding: 12px 24px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Mobile Responsiveness for Horizontal Cards */
@media (max-width: 992px) {
  .project-card.horizontal {
    flex-direction: column-reverse; /* Image on top on mobile, or bottom? Normal cards have image on top usually. Let's keep content first then image? No, usually image first. */
    /* If we use column-reverse, image is last in DOM so it goes to top? No, flex-direction reverses order. */
    /* DOM: Content, Image. */
    /* column: Content (top), Image (bottom). */
    /* column-reverse: Image (top), Content (bottom). */
    height: auto;
    min-height: auto;
  }

  .project-card.horizontal .project-image {
    width: 100%;
    height: 250px;
  }

  .project-card.horizontal .project-content {
    padding: 30px 20px;
  }
  
  .project-specs {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 576px) {
  .project-specs {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 15px;
  }
  
  .project-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .project-actions {
    width: 100%;
  }
  
  .btn-enquire, .btn-view {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}

/* Update for Simplified Card Layout */
.project-card.horizontal .project-content {
  justify-content: flex-start; /* Align content to top */
  gap: 20px;
}

.project-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Updated Specs Grid for Location/Area */
.project-specs {
  border-bottom: none; /* Remove separator */
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between; /* Space out items */
  gap: 30px;
}

.spec-item {
  align-items: flex-start; /* Left align text */
}

.spec-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.spec-value {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* Hide unused elements if any remain in markup or from previous CSS */
.project-footer {
  display: none;
}
.project-tags {
  display: none;
}

/* Glassmorphism Design Enhancement */
.project-card.horizontal {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.project-card.horizontal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(25px) brightness(0.4);
  z-index: -1;
}

.project-card.horizontal .project-content {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 12px 0 0 12px;
  box-shadow: inset 0 8px 32px rgba(31, 38, 135, 0.1);
}

.project-card.horizontal .project-image {
  aspect-ratio: 16/9;
  width: 50%;
  height: auto;
  min-height: 100%;
}

/* Light Text Theme for Project Cards */
.project-card.horizontal {
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card.horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-card.horizontal .project-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.project-card.horizontal .project-image {
  aspect-ratio: 16/9;
  width: 50%;
  flex-shrink: 0;
}

.project-card.horizontal .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text colors for light theme (overriding previous) */
.project-card.horizontal .project-title {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 8px;
}

.project-card.horizontal .project-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.project-card.horizontal .project-status {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 12px;
}

.project-card.horizontal .project-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
}

.project-card.horizontal .spec-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-card.horizontal .spec-value {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .project-card.horizontal {
    flex-direction: column-reverse;
    height: auto;
    min-height: auto;
  }

  .project-card.horizontal .project-image {
    width: 100%;
    height: 250px;
  }

  .project-card.horizontal .project-content {
    padding: 30px 20px;
    border-radius: 0 0 12px 12px;
  }
}

@media (max-width: 576px) {
  .project-card.horizontal .project-content {
    padding: 20px;
  }

  .project-card.horizontal .project-title {
    font-size: 1.5rem;
  }
}

/* --- Services Process --- */
.services-process {
  margin-top: 48px;
}

.services-process-header {
  margin-bottom: 20px;
}

.services-process-header h2 {
  margin-bottom: 10px;
}

.services-process-header p {
  color: var(--text-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-card ul {
  margin: 0;
  padding-left: 18px;
}

.process-card li {
  margin-bottom: 8px;
  color: var(--text-color);
  line-height: 1.6;
}

.process-card li:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Dynamic Image-Derived Themes (JS) --- */
.project-card.horizontal {
  --project-color-1: rgba(34, 52, 64, 1);
  --project-color-2: rgba(23, 34, 44, 1);
  --project-color-1-soft: rgba(34, 52, 64, 0.58);
  --project-color-2-soft: rgba(23, 34, 44, 0.62);
  --project-image-url: none;
  position: relative;
  isolation: isolate;
}

.project-card.horizontal .project-content {
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(24, 33, 44, 0.9), rgba(16, 24, 34, 0.92));
}

.project-card.horizontal .project-content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--project-image-url);
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  filter: blur(26px) saturate(1.15) brightness(0.5);
}

.project-card.horizontal .project-content::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, var(--project-color-1-soft), transparent 52%),
    radial-gradient(circle at 84% 78%, var(--project-color-2-soft), transparent 58%),
    linear-gradient(145deg, rgba(10, 15, 22, 0.82), rgba(12, 18, 27, 0.9));
  backdrop-filter: blur(10px) saturate(1.12);
  -webkit-backdrop-filter: blur(10px) saturate(1.12);
}

.project-card.horizontal .project-title,
.project-card.horizontal .project-subtitle,
.project-card.horizontal .project-description,
.project-card.horizontal .spec-label,
.project-card.horizontal .spec-value,
.project-card.horizontal .project-header h3,
.project-card.horizontal .project-header p {
  color: rgba(245, 249, 255, 0.95);
}

.project-card.horizontal .spec-label {
  color: rgba(218, 230, 245, 0.74);
}

.project-card.horizontal .project-description {
  color: rgba(228, 237, 248, 0.9);
}

@media (max-width: 992px) {
  .project-card.horizontal .project-content {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* --- Services Page (About-style theme) --- */
.services-about-content {
  gap: 24px;
}

/* --- Services – What We Deliver (redesigned) --- */
.svc-deliver-section {
  background: var(--white);
  padding: 96px 0 80px;
  position: relative;
}

.svc-deliver-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Header */
.svc-deliver-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.svc-deliver-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.svc-deliver-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 18px;
}

.svc-deliver-sub {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* Pillars */
.svc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.svc-pillar {
  position: relative;
  background: var(--off-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 36px 36px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.svc-pillar:hover::before {
  transform: scaleX(1);
}

.svc-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13, 13, 13, 0.1);
}

.svc-pillar-num {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(13, 13, 13, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.svc-pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(249, 179, 23, 0.12);
  border: 1px solid rgba(249, 179, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.svc-pillar:hover .svc-pillar-icon {
  background: rgba(249, 179, 23, 0.22);
}

.svc-pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.svc-pillar-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* Catalog */
.svc-catalog {
  background: var(--off-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 48px 52px;
}

.svc-catalog-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 14px;
}

.svc-catalog-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--accent-color);
  border-radius: 2px;
  flex-shrink: 0;
}

.svc-catalog-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 0.01em;
}

.svc-catalog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.svc-catalog-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.07);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.svc-catalog-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.svc-catalog-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(249, 179, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-catalog-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.svc-catalog-link:hover {
  color: var(--accent-color);
}

.svc-catalog-link i {
  font-size: 0.65rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-catalog {
    padding: 36px 28px;
  }

  .svc-catalog-list {
    grid-template-columns: 1fr;
  }

  .svc-catalog-item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(13, 13, 13, 0.07);
  }

  .svc-catalog-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .svc-deliver-section {
    padding: 64px 0 56px;
  }

  .svc-pillar {
    padding: 32px 28px 28px;
  }
}

.services-pillars-one-row {
  grid-template-columns: minmax(0, 1fr);
  max-width: 680px;
  margin: 0 auto;
}

.services-pillars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.services-catalog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
}

.services-catalog-list li {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px 20px;
  background: var(--white);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.services-catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  color: inherit;
}

.services-catalog-link:hover {
  color: var(--accent-color);
}

.services-catalog-link .link-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.services-process-section {
  background: linear-gradient(145deg, #11141b, #0a0d13);
  position: relative;
  padding-bottom: 70px;
}

.services-process-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.process-grid.premium {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  counter-reset: process-step;
}

.process-card.premium {
  counter-increment: process-step;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.process-card.premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
  border-color: rgba(249, 179, 23, 0.25);
}

/* Gold top accent bar */
.process-card.premium::before {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--accent-color);
  transition: width 0.4s ease;
  border-radius: 18px 18px 0 0;
}

.process-card.premium:hover::before,
.process-card.premium.is-active::before {
  width: 100%;
}

/* Step counter watermark */
.process-card.premium::after {
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  font-family: var(--font-heading);
}

.process-card.premium h3 {
  color: #f4f7fc;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 26px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.process-card.premium h3 i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 179, 23, 0.12);
  border: 1px solid rgba(249, 179, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.process-card.premium:hover h3 i,
.process-card.premium.is-active h3 i {
  background: rgba(249, 179, 23, 0.22);
}

.process-card.premium ul {
  margin: 0;
  padding: 20px 28px 28px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.process-card.premium li {
  position: relative;
  padding: 10px 0 10px 20px;
  color: rgba(210, 222, 238, 0.72);
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-card.premium li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-card.premium li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.7;
}

.process-card.premium.is-active {
  border-color: rgba(249, 179, 23, 0.3);
  box-shadow: 0 0 0 1px rgba(249, 179, 23, 0.15), 0 20px 48px rgba(249, 179, 23, 0.12);
  background: rgba(249, 179, 23, 0.04);
}

.process-card.premium.is-active li {
  color: rgba(228, 238, 252, 0.86);
}

.services-process-header.premium {
  text-align: center;
  margin-bottom: 36px;
}

.services-process-header.premium h2 {
  color: #ffffff;
}

.services-process-header.premium p {
  color: rgba(222, 232, 245, 0.78);
}

.services-process-header.premium .section-subtitle {
  color: var(--accent-color);
}

.services-process-header.premium .section-subtitle {
  margin-bottom: 12px;
}

.process-carousel-band {
  margin: 10px 0 38px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 0 10px;
  overflow: hidden;
}

.process-carousel-stage {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
}

.process-carousel-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: all 0.25s ease;
}

.process-carousel-nav:hover {
  border-color: rgba(249, 179, 23, 0.38);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(249, 179, 23, 0.08);
}

.process-carousel-scene {
  position: relative;
  height: 360px;
  perspective: 1800px;
  cursor: grab;
}

.process-carousel-scene:active {
  cursor: grabbing;
}

.process-carousel-ring {
  --tile-step: 51.428deg;
  --tile-radius: 330px;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.process-carousel-tile {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  min-height: 190px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transform:
    translate(-50%, -50%)
    rotateY(calc(var(--i) * var(--tile-step)))
    translateZ(var(--tile-radius));
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: #f5f8ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  padding: 18px;
  font-family: var(--font-heading);
}

.process-carousel-tile i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.process-carousel-tile h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

@media (max-width: 1200px) {
  .services-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .process-grid.premium {
    grid-template-columns: 1fr;
  }

  .process-carousel-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-carousel-nav {
    display: none;
  }

  .process-carousel-scene {
    height: auto;
    perspective: none;
    cursor: default;
  }

  .process-carousel-ring {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 220px);
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    transform: none !important;
    -webkit-overflow-scrolling: touch;
  }

  .process-carousel-tile {
    position: relative;
    left: auto;
    top: auto;
    min-height: 150px;
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .services-catalog-grid {
    grid-template-columns: 1fr;
  }

  .services-catalog-list {
    grid-template-columns: 1fr;
  }

  .services-pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Careers Section ── */
.car-section {
  padding: 0;
}

.car-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
}

/* Left info panel */
.car-info {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
}

.car-info-inner {
  flex: 1;
  padding: 72px 56px 64px;
  display: flex;
  flex-direction: column;
}

.car-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.car-eyebrow--gold {
  color: var(--accent-color);
}

.car-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.car-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 44px;
}

/* Perks list */
.car-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.car-perk {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.car-perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(249,179,23,0.12);
  border: 1px solid rgba(249,179,23,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.car-perk strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.car-perk p {
  margin: 0;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Right form panel */
.car-form-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 72px 56px 64px;
}

.car-form-header {
  margin-bottom: 40px;
}

.car-form-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 12px;
  margin-top: 10px;
}

.car-form-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Floating-label form */
.car-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.car-field {
  position: relative;
}

.car-field--full {
  grid-column: span 2;
}

.car-field input[type="text"],
.car-field input[type="email"],
.car-field input[type="tel"] {
  font-family: var(--font-body);
  width: 100%;
  padding: 22px 0 10px;
  border: none;
  border-bottom: 1.5px solid rgba(13,13,13,0.18);
  border-radius: 0;
  background: transparent;
  font-size: 0.95rem;
  color: var(--primary-color);
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

.car-field input[type="text"]:focus,
.car-field input[type="email"]:focus,
.car-field input[type="tel"]:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.car-field > label:not(.car-drop-zone) {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.38);
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.car-field input:not(:placeholder-shown) ~ label,
.car-field input:focus ~ label {
  top: 2px;
  font-size: 0.62rem;
  color: var(--accent-color);
  letter-spacing: 2px;
}

/* File drop zone */
.car-file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.car-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 36px 24px;
  border: 1.5px dashed rgba(13,13,13,0.2);
  border-radius: 14px;
  background: rgba(249,179,23,0.03);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  text-align: center;
  box-sizing: border-box;
}

.car-drop-zone:hover,
.car-drop-zone--selected {
  border-color: var(--accent-color);
  background: rgba(249,179,23,0.07);
}

.car-drop-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.car-drop-main {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}

.car-drop-sub {
  font-size: 0.8rem;
  color: var(--text-light);
}

.car-drop-browse {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.car-drop-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  min-height: 1.2em;
}

/* Form footer */
.car-form-footer {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.car-note {
  color: var(--text-light);
  font-size: 0.85rem;
}

.car-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(13,13,13,0.2);
  transition: color 0.2s, border-color 0.2s;
}

.car-note a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.car-submit {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .car-split {
    grid-template-columns: 1fr;
  }

  .car-info-inner {
    padding: 56px 32px 48px;
  }

  .car-form-panel {
    padding: 52px 32px 56px;
  }
}

@media (max-width: 600px) {
  .car-form {
    grid-template-columns: 1fr;
  }

  .car-field--full,
  .car-form-footer {
    grid-column: span 1;
  }

  .car-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .car-submit {
    width: 100%;
    justify-content: center;
  }

  .car-info-inner {
    padding: 44px 24px 40px;
  }

  .car-form-panel {
    padding: 44px 24px 52px;
  }
}


/* ══════════════════════════════════════════════════════════════
   HOMEPAGE — PREMIUM WHITE REDESIGN (.home-page)
   ══════════════════════════════════════════════════════════════ */

/* ── Authority Bar (stats strip below hero) ── */
.hp-authority-bar {
  background: #ffffff;
  padding: 42px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}

.hp-authority-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hp-authority-item {
  flex: 1;
  text-align: center;
  padding: 6px 20px;
}

.hp-auth-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.hp-auth-num sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 700;
}

.hp-auth-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.hp-authority-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hp-authority-items { flex-wrap: wrap; gap: 20px 0; }
  .hp-authority-divider { display: none; }
  .hp-authority-item { flex: 0 0 33.33%; }
  .hp-authority-bar { padding: 30px 0; }
}

@media (max-width: 480px) {
  .hp-authority-item { flex: 0 0 50%; }
}


/* ── Client Logos Marquee ── */
.hp-clients {
  background: #ffffff;
  padding: 60px 0 50px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.hp-clients .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.logo-track {
  display: flex;
  gap: 80px;
  animation: scroll-logos 40s linear infinite;
  will-change: transform;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 140px;
}

.logo-item img {
  max-height: 80px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hp-clients { padding: 40px 0 35px; }
  .logo-track { gap: 60px; animation-duration: 30s; }
  .logo-marquee::before,
  .logo-marquee::after { width: 50px; }
}


/* ── Intro Section (two-column editorial) ── */
.hp-intro {
  padding: 110px 0 100px;
  background: #ffffff;
}

.hp-intro-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.hp-intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.hp-intro-heading strong {
  font-weight: 800;
  display: block;
}

.hp-intro-lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 35px;
}

.hp-link-arrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}

.hp-link-arrow:hover {
  gap: 16px;
  color: var(--accent-color);
}

.hp-link-arrow .arrow {
  transition: transform 0.3s ease;
}

.hp-link-arrow:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .hp-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .hp-intro { padding: 80px 0 70px; }
}


/* ── Expertise Section (white cards with gold icon) ── */
.hp-expertise {
  padding: 100px 0 110px;
  background: var(--off-white);
}

.hp-expertise-header {
  margin-bottom: 60px;
}

.hp-expertise-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}

.hp-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.hp-expertise-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 44px 32px 36px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.hp-expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  border-color: rgba(249, 179, 23, 0.2);
}

.hp-exp-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249,179,23,0.1), rgba(249,179,23,0.04));
  border: 1px solid rgba(249,179,23,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.hp-expertise-card:hover .hp-exp-icon {
  background: linear-gradient(135deg, rgba(249,179,23,0.18), rgba(249,179,23,0.08));
  border-color: rgba(249,179,23,0.3);
}

.hp-exp-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.hp-expertise-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--primary-color);
}

.hp-expertise-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.hp-card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.hp-expertise-card:hover .hp-card-link {
  opacity: 1;
  transform: translateY(0);
}

.hp-card-link span {
  transition: transform 0.3s ease;
}

.hp-card-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .hp-expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hp-expertise-grid { grid-template-columns: 1fr; }
  .hp-expertise { padding: 60px 0 70px; }
}


/* ── Certifications & Compliance ── */
.hp-certifications {
  padding: 100px 0;
  background: #ffffff;
}

.hp-cert-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.hp-cert-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hp-cert-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hp-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.hp-cert-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hp-cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  border-color: rgba(249, 179, 23, 0.2);
  background: #ffffff;
}

.hp-cert-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,179,23,0.12), rgba(249,179,23,0.05));
  border: 2px solid rgba(249,179,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.hp-cert-card:hover .hp-cert-badge {
  background: linear-gradient(135deg, rgba(249,179,23,0.2), rgba(249,179,23,0.1));
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.hp-cert-badge i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.hp-cert-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.hp-cert-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.hp-cert-status {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hp-cert-status.active {
  background: linear-gradient(135deg, rgba(46,213,115,0.15), rgba(46,213,115,0.08));
  color: #27ae60;
  border: 1px solid rgba(46,213,115,0.25);
}

@media (max-width: 992px) {
  .hp-cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hp-cert-grid { grid-template-columns: 1fr; }
  .hp-certifications { padding: 60px 0; }
}


/* ── Industry Sectors Grid ── */
.hp-sectors {
  padding: 100px 0;
  background: #ffffff;
}

.hp-sectors-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.hp-sectors-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hp-sectors-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hp-sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.hp-sector-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.hp-sector-card:hover {
  background: #ffffff;
  border-color: rgba(249, 179, 23, 0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.hp-sector-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(249,179,23,0.1), rgba(249,179,23,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hp-sector-card:hover .hp-sector-icon {
  background: linear-gradient(135deg, rgba(249,179,23,0.2), rgba(249,179,23,0.1));
  transform: scale(1.05);
}

.hp-sector-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.hp-sector-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.hp-sector-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hp-sectors { padding: 70px 0; }
  .hp-sectors-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hp-sector-card { padding: 28px 18px; }
}

@media (max-width: 480px) {
  .hp-sectors-grid { grid-template-columns: 1fr; }
}


/* ── How We Execute (process section on home) ── */
.hp-process {
  padding: 100px 0 90px;
  background: linear-gradient(145deg, #11141b, #0a0d13);
  position: relative;
}

.hp-process-header {
  text-align: center;
  margin-bottom: 36px;
}

.hp-process-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hp-process-header p {
  color: rgba(222, 232, 245, 0.78);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 620px;
  margin: 14px auto 0;
}

.hp-process-header .section-subtitle {
  color: var(--accent-color);
  margin-bottom: 12px;
}

.hp-process .process-carousel-band {
  margin-bottom: 50px;
}

/* Override carousel tile colours for the home page dark backdrop */
.hp-process .process-carousel-tile {
  background: linear-gradient(170deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  color: #f5f8ff;
}

.hp-process .process-carousel-tile i {
  color: var(--accent-color);
}

.hp-process .process-carousel-tile h4 {
  color: #ffffff;
}

.hp-process .process-carousel-nav {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.58);
}

.hp-process .process-carousel-nav:hover {
  border-color: rgba(249,179,23,0.38);
  color: rgba(255,255,255,0.86);
  background: rgba(249,179,23,0.08);
}

.hp-process-cta {
  text-align: center;
  margin-top: 50px;
}

.hp-process-cta .hp-link-arrow {
  color: rgba(255,255,255,0.7);
}

.hp-process-cta .hp-link-arrow:hover {
  color: var(--accent-color);
}


/* ── CTA (commanding dark) ── */
.hp-cta {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hp-cta-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.hp-cta-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
}

.hp-cta .btn-gold {
  white-space: nowrap;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hp-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .hp-cta { padding: 70px 0; }
}


/* ── Footer branches fix ── */
.footer-branches {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-branches p {
  margin: 0;
}

.footer-branches strong {
  color: rgba(255,255,255,0.7);
}

/* ── Pagination Responsive Styles ── */
@media (max-width: 768px) {
  .projects-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-box {
    max-width: 100%;
  }
  
  .projects-count {
    text-align: center;
  }
  
  .pagination-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .page-number {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  
  .pagination-numbers {
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .projects-controls {
    margin-bottom: 30px;
  }
  
  .pagination-controls {
    margin-top: 40px;
    gap: 6px;
  }
  
  .pagination-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .pagination-btn i {
    display: none;
  }
  
  .page-number {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
  }
}
