/* ============================================================
   TALEEN CONSTRUCTION — Brand Stylesheet (Premium)
   Interior Fit-Out & Finishing
   Colors: Navy #14213D | Copper #C97A40 | White | Light Gray #F2F2F2
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --navy: #14213d;
  --navy-2: #1b2c50;
  --navy-3: #0e192e;
  --navy-4: #0a1120;
  --copper: #c97a40;
  --copper-2: #b5692f;
  --copper-3: #a85c26;
  --copper-soft: #e0a878;
  --white: #ffffff;
  --gray: #f4f5f7;
  --gray-2: #e6e8ec;
  --ink: #17203a;
  --muted: #5c6478;
  --muted-light: #9aa2b4;

  --maxw: 1440px;
  --gutter: 48px;

  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 6px 20px rgba(20, 33, 61, 0.06);
  --shadow-md: 0 20px 46px rgba(20, 33, 61, 0.12);
  --shadow-lg: 0 34px 80px rgba(20, 33, 61, 0.18);
  --glow-copper: 0 14px 30px rgba(201, 122, 64, 0.4);

  --t-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --t-mid: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  --ff: "Arimo", "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--navy);
}

p {
  margin: 0 0 1rem;
}

::selection {
  background: var(--copper);
  color: #fff;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--tight {
  padding: 100px 0;
}

.section--gray {
  background: var(--gray);
}

.section--navy {
  background: var(--navy);
  color: #d7dce8;
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.text-copper {
  color: var(--copper);
}

.divider-copper {
  width: 64px;
  height: 3px;
  background: var(--copper);
  border: none;
  margin: 24px 0 0;
}

/* ---------- Eyebrow / Section Head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--copper);
  display: inline-block;
}

.section-head {
  max-width: 740px;
  margin-bottom: 70px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-title {
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.08;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  margin-top: 20px;
}

.section--navy .section-sub {
  color: #aeb6c8;
}

/* ---------- Buttons (pill + arrow chip + sweep fill) ---------- */
.btn {
  /* themable tokens (overridden per variant) */
  --btn-fill: var(--navy);
  --btn-chip-bg: rgba(255, 255, 255, 0.2);
  --btn-chip-color: #fff;
  --btn-chip-bg-h: #fff;
  --btn-chip-color-h: var(--navy);
  --btn-color-h: #fff;

  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 16px 12px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 2px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  transition: color var(--t-mid), border-color var(--t-mid),
    box-shadow var(--t-mid), transform var(--t-fast);
}

/* diagonal sweep fill that wipes in on hover */
.btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  left: -8%;
  width: 116%;
  background: var(--btn-fill);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
}

/* trailing arrow chip */
.btn::after {
  content: "\f061";
  /* fa-arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-chip-bg);
  color: var(--btn-chip-color);
  transition: background var(--t-mid), color var(--t-mid),
    transform var(--t-mid);
}

.btn:hover,
.btn:focus-visible {
  color: var(--btn-color-h);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:hover::after,
.btn:focus-visible::after {
  background: var(--btn-chip-bg-h);
  color: var(--btn-chip-color-h);
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(-1px);
}

/* hide any stray inline icon so the chip stays the single icon */
.btn>i {
  display: none;
}

/* --- variants --- */
.btn-copper {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
  --btn-fill: var(--navy);
  --btn-chip-bg: rgba(255, 255, 255, 0.22);
  --btn-chip-color: #fff;
  --btn-chip-bg-h: var(--copper);
  --btn-chip-color-h: #fff;
  --btn-color-h: #fff;
}

.btn-copper:hover,
.btn-copper:focus-visible {
  border-color: var(--navy);
  box-shadow: var(--glow-copper);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  --btn-fill: #fff;
  --btn-chip-bg: rgba(255, 255, 255, 0.16);
  --btn-chip-color: #fff;
  --btn-chip-bg-h: var(--copper);
  --btn-chip-color-h: #fff;
  --btn-color-h: var(--navy);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #fff;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  --btn-fill: var(--navy);
  --btn-chip-bg: rgba(20, 33, 61, 0.1);
  --btn-chip-color: var(--navy);
  --btn-chip-bg-h: var(--copper);
  --btn-chip-color-h: #fff;
  --btn-color-h: #fff;
}

.btn-outline-navy:hover,
.btn-outline-navy:focus-visible {
  border-color: var(--navy);
}

.btn-ghost-copper {
  background: transparent;
  color: var(--copper);
  border-color: rgba(201, 122, 64, 0.5);
  --btn-fill: var(--copper);
  --btn-chip-bg: rgba(201, 122, 64, 0.15);
  --btn-chip-color: var(--copper);
  --btn-chip-bg-h: #fff;
  --btn-chip-color-h: var(--copper);
  --btn-color-h: #fff;
}

.btn-ghost-copper:hover,
.btn-ghost-copper:focus-visible {
  border-color: var(--copper);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-box img {
  height: 60px;
  margin: 0 auto 22px;
  animation: pulseLogo 1.6s ease-in-out infinite;
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--copper);
  border-radius: 3px;
  animation: loadBar 1.2s ease-in-out infinite;
}

@keyframes pulseLogo {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.8;
  }
}

@keyframes loadBar {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(320%);
  }
}

/* ---------- Scroll progress ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--copper-soft));
  z-index: 300;
  transition: width 0.1s linear;
}

/* ---------- Back to top ---------- */
#back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  border: 0;
  font-size: 16px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--t-mid);
  box-shadow: var(--glow-copper);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

/* ============================================================
   HEADER / NAVIGATION (modern floating glass)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 130;
  padding: 16px 0;
  transition: padding var(--t-mid);
}

.site-header.scrolled {
  padding: 10px 0;
}

/* the nav itself is a floating translucent glass pill */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 90px;
  padding: 0 14px 0 24px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: height var(--t-mid), background var(--t-mid),
    border-radius var(--t-mid), border-color var(--t-mid),
    box-shadow var(--t-mid);
  justify-content: space-between;
}

.site-header.scrolled .nav {
  height: 76px;
  background: rgba(11, 18, 32, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 75px;
  width: auto;
  transition: height var(--t-mid);
}

.site-header.scrolled .brand img {
  height: 62px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0;
}

.nav-links a {
  display: inline-block;
  padding: 9px 13px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  color: #d3d8e4;
  border-radius: 40px;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a {
  position: relative;
}

.nav-links a.active {
  color: var(--copper);
  background: rgba(201, 122, 64, 0.12);
}

.nav-links a.active::after {
  /* content: ""; */
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  transform: translateX(-50%);
}

.nav-cta {
  margin-left: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 140;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 18px;
  margin-left: auto;
  transition: background var(--t-fast);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle[aria-expanded="true"] .fa-bars::before {
  content: "\f00d";
}

.nav-backdrop {
  display: none;
}

/* ============================================================
   HERO (cinematic full-bleed)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg,
.hero-bg .swiper-wrapper,
.hero-bg .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-bg .swiper-slide-active .hero-slide {
  animation: kenburns 7s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.16);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(95deg,
      var(--navy) 0%,
      rgba(14, 25, 46, 0.9) 24%,
      rgba(14, 25, 46, 0.48) 55%,
      rgba(14, 25, 46, 0.08) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 65%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 80%;
  padding: 80px 0;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-tagline::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--copper);
}

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero h1 .line-2 {
  color: var(--copper);
  display: block;
}

.hero-sub {
  color: #c2c9da;
  font-size: 18px;
  max-width: 520px;
  margin: 28px 0 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* slide numbers (vertical) */
.hero-pagination {
  position: absolute;
  left: auto !important;
  right: var(--gutter);
  width: auto !important;
  bottom: auto !important;
  top: 55% !important;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.hero-pagination .bullet {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--t-fast);
}

.hero-pagination .bullet::after {
  content: "";
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--t-fast);
}

.hero-pagination .bullet.is-active {
  color: #fff;
}

.hero-pagination .bullet.is-active::after {
  width: 46px;
  background: var(--copper);
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 4;
  color: #aeb6c8;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  position: relative;
}

.hero-scroll .mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  background: var(--copper);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  100% {
    opacity: 0;
  }
}

/* blueprint corner lines */
.blueprint-corner {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

.blueprint-corner svg {
  display: block;
}

.blueprint-corner.tl {
  top: 24px;
  left: 24px;
}

.blueprint-corner.br {
  bottom: 24px;
  right: 24px;
  transform: rotate(180deg);
}

/* ============================================================
   MARQUEE (clients)
   ============================================================ */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #aab0be;
  filter: grayscale(1);
  transition: color var(--t-fast);
  white-space: nowrap;
}

.marquee-item:hover {
  color: var(--navy);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- Accreditations marquee (navy band) ---- */
.accred-marquee {
  background: var(--navy);
  padding: 40px 0 44px;
  overflow: hidden;
}

.accred-title {
  text-align: center;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.accred-viewport {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.accred-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.accred-marquee:hover .accred-track {
  animation-play-state: paused;
}

.accred-logo {
  height: 96px;
  width: auto;
  flex: 0 0 auto;
  opacity: 0.9;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.accred-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.accred-sep {
  height: 34px;
  width: auto;
  flex: 0 0 auto;
  opacity: 0.9;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}

.about-media {
  position: relative;
  padding-bottom: 44px;
  padding-right: 44px;
}

.about-media .img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-media .img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.about-media:hover .img-main img {
  transform: scale(1.05);
}

.about-media .img-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}

.about-media .img-float img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.about-body p {
  color: var(--muted);
  font-size: 17px;
}

.about-body .lead {
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}

.about-mini {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-mini .item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
}

.about-mini .item i {
  color: var(--copper);
  font-size: 20px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* homepage services section: 3-up grid + subtle architectural blueprint bg */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-section>.container {
  position: relative;
  z-index: 1;
}

.services-section .services-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* services slider: stays a grid on desktop, becomes a Swiper on mobile.
   Swiper adds .swiper-initialized only when JS enables it (mobile only). */
.services-swiper {
  overflow: visible;
  position: relative;
  /* keep the slider in a low stacking context so the mobile nav
     overlay (backdrop/drawer) always renders above it */
  z-index: 0;
}

.services-swiper .swiper-wrapper {
  display: grid;
}

.services-swiper .swiper-pagination {
  display: none;
}

.services-swiper.swiper-initialized {
  overflow: hidden;
}

.services-swiper.swiper-initialized .swiper-wrapper {
  display: flex;
}

.services-swiper.swiper-initialized .swiper-slide {
  height: auto;
}

.services-swiper.swiper-initialized .swiper-pagination {
  display: block;
  position: static;
  margin-top: 26px;
  text-align: center;
}

.services-blueprint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(20, 33, 61, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 61, 0.2) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(1100px 620px at 90% 4%, #000 0%, transparent 68%);
  mask-image: radial-gradient(1100px 620px at 90% 4%, #000 0%, transparent 68%);
}

.services-plan {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.services-plan svg {
  display: block;
}

.services-plan.tr {
  top: 20px;
  right: -56px;
  transform: rotate(-7deg);
  display: none;
}

.services-plan.bl {
  bottom: 6px;
  left: -52px;
  opacity: 0.85;
  transform: rotate(5deg);
  display: none;
}

.services-cta {
  margin-top: 56px;
  text-align: center;
}

.service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  transition: transform var(--t-mid), box-shadow var(--t-mid),
    border-color var(--t-mid);
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--copper);
  transition: width var(--t-mid);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 33, 61, 0.06);
  color: var(--navy);
  font-size: 25px;
  margin-bottom: 24px;
  transition: background var(--t-mid), color var(--t-mid), transform var(--t-mid);
}

.service-card:hover .service-icon {
  background: var(--copper);
  color: #fff;
  transform: rotate(-6deg);
}

.service-card h3 {
  font-size: 19px;
}

.service-underline {
  width: 34px;
  height: 3px;
  background: var(--copper);
  margin-top: 14px;
  transition: width var(--t-mid);
}

.service-card:hover .service-underline {
  width: 64px;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 14px 0 0;
}

/* ============================================================
   CLIENTS (static strip fallback)
   ============================================================ */
.clients-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.client-logo {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #98a0b0;
  filter: grayscale(1);
  transition: color var(--t-fast), box-shadow var(--t-fast),
    transform var(--t-fast);
}

.client-logo:hover {
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

/* ============================================================
   STATS BAND (home)
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 46px 24px;
}

.stat-item {
  position: relative;
  padding: 8px 20px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(20, 33, 61, 0.09);
}

.stat-item .num {
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}

.stat-item .lbl {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  position: relative;
  overflow: hidden;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed rgba(201, 122, 64, 0.4);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.process-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 2px solid var(--copper);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  position: relative;
  transition: transform var(--t-mid), background var(--t-mid), color var(--t-mid);
}

.process-step:hover .process-icon {
  background: var(--copper);
  color: #fff;
  transform: translateY(-6px);
}

.process-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  color: #aeb6c8;
  font-size: 15px;
  margin: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: center;
}

.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  background: var(--gray);
  box-shadow: var(--shadow-lg);
}

.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.why-visual:hover img {
  transform: scale(1.05);
}

.why-visual .why-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--copper);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.why-badge span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 38px;
  margin-top: 10px;
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(201, 122, 64, 0.12);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background var(--t-mid), color var(--t-mid);
}

.feature:hover .feature-icon {
  background: var(--copper);
  color: #fff;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.feature p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 11px 24px;
  border: 1px solid var(--gray-2);
  background: #fff;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--t-mid), border-color var(--t-mid),
    box-shadow var(--t-fast), transform var(--t-fast);
}

.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}

.filter-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.filter-btn:hover {
  color: #fff;
  border-color: var(--copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.filter-btn.active::before {
  display: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow-sm);
}

.project-card .card-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.09);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 25, 46, 0.95) 0%,
      rgba(14, 25, 46, 0.4) 45%,
      rgba(14, 25, 46, 0) 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-mid), transform var(--t-mid);
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-cat {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-soft);
  font-weight: 700;
  margin-bottom: 8px;
}

.project-overlay h3 {
  color: #fff;
  font-size: 23px;
}

.project-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: scale(0.6);
  opacity: 0;
  transition: all var(--t-mid);
}

.project-card:hover .project-arrow {
  transform: scale(1);
  opacity: 1;
}

.is-hidden {
  display: none !important;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.date-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--copper);
  color: #fff;
  border-radius: var(--radius);
  padding: 9px 15px;
  text-align: center;
  line-height: 1.05;
  box-shadow: var(--shadow-sm);
}

.date-badge .d {
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.date-badge .m {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-body h3 {
  font-size: 20px;
  line-height: 1.3;
}

.blog-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 12px 0 20px;
}

.read-more {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
}

.read-more:hover {
  gap: 14px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-swiper {
  padding-bottom: 60px !important;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  position: relative;
  height: auto;
  box-shadow: var(--shadow-sm);
}

.testi-card .quote {
  color: var(--copper);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
}

.testi-card p {
  color: var(--muted);
  font-size: 15.5px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.testi-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author .name {
  font-weight: 700;
  color: var(--navy);
}

.testi-author .co {
  font-size: 13px;
  color: var(--muted);
}

.swiper-pagination-bullet {
  background: var(--navy);
}

.swiper-pagination-bullet-active {
  background: var(--copper);
}

/* ============================================================
   SERVICE DETAIL ROWS
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-detail .row {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}

.service-detail a.row {
  color: inherit;
  text-decoration: none;
}

.service-detail .row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--copper);
}

.service-detail .row .service-icon {
  margin-bottom: 0;
}

.service-detail .row h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-detail .row p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ============================================================
   PROCESS DETAIL
   ============================================================ */
.process-detail {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.process-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  position: relative;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}

.process-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.process-row .big-num {
  font-size: 50px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  opacity: 0.85;
}

.process-row h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-row p {
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.value-card .service-icon {
  margin: 0 auto 22px;
}

.value-card p {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 15px;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.team-card .info {
  padding: 22px 24px 26px;
}

.team-card h3 {
  font-size: 19px;
}

.team-card .role {
  color: var(--copper);
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
   CTA BANNER (full-bleed)
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy-3);
  color: #fff;
  text-align: center;
  padding: 120px var(--gutter);
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 25, 46, 0.75), rgba(10, 17, 32, 0.9));
  z-index: 1;
}

.cta-banner .inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-banner p {
  color: #b9c1d4;
  font-size: 18px;
  margin: 20px 0 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* inline copper cta band (inner pages) */
.cta-band {
  background: var(--copper);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 58px 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 640px;
}

.cta-band .btn {
  background: #fff;
  color: var(--copper);
  border-color: #fff;
  --btn-fill: var(--navy);
  --btn-chip-bg: rgba(201, 122, 64, 0.16);
  --btn-chip-color: var(--copper);
  --btn-chip-bg-h: var(--copper);
  --btn-chip-color-h: #fff;
  --btn-color-h: #fff;
}

.cta-band .btn:hover,
.cta-band .btn:focus-visible {
  border-color: var(--navy);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(680px 420px at 5% 6%, rgba(201, 122, 64, 0.15), transparent 60%),
    radial-gradient(760px 520px at 97% 98%, rgba(201, 122, 64, 0.13), transparent 58%),
    linear-gradient(160deg, #182a4d 0%, var(--navy) 46%, #0e192e 100%);
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(1200px 700px at 50% 0%, #000, transparent 76%);
  mask-image: radial-gradient(1200px 700px at 50% 0%, #000, transparent 76%);
}

.contact-bg .cbg-line {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  transform: rotate(52deg);
  transform-origin: left center;
  opacity: 0.75;
}

.contact-bg .cbg-art {
  position: absolute;
}

.contact-bg .cbg-art--left {
  left: -26px;
  bottom: -14px;
  width: 330px;
  opacity: 0.6;
}

.contact-bg .cbg-art--right {
  right: -24px;
  bottom: -28px;
  width: 270px;
  opacity: 0.85;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.92fr;
  gap: 40px;
  align-items: stretch;
}

.contact-grid>* {
  min-width: 0;
}

/* ---- LEFT INTRO ---- */
.contact-intro {
  align-self: center;
}

.contact-intro .eyebrow {
  margin-bottom: 20px;
}

.contact-title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.contact-divider {
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--copper);
  margin: 26px 0 30px;
}

.contact-logo {
  height: 52px;
  margin-bottom: 22px;
}

.contact-intro p {
  color: #aeb6c8;
  font-size: 16px;
  line-height: 1.75;
  max-width: 340px;
}

.contact-intro .tagline {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 26px;
}

/* ---- MIDDLE FORM ---- */
.contact-form {
  position: relative;
  background: linear-gradient(180deg, rgba(30, 45, 78, 0.72), rgba(18, 29, 52, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 38px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.form-head h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.form-head-line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--copper));
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  margin-bottom: 18px;
}

.field-row .field {
  margin-bottom: 0;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #c5ccda;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.field-control {
  position: relative;
}

.field-control input,
.field-control select,
.field-control textarea {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t-fast), background var(--t-fast),
    box-shadow var(--t-fast);
}

.field-control textarea {
  padding-right: 16px;
  resize: vertical;
  min-height: 120px;
}

.field-control input::placeholder,
.field-control textarea::placeholder {
  color: #808aa0;
}

.field-control select {
  color: #fff;
  cursor: pointer;
}

.field-control select:invalid {
  color: #808aa0;
}

.field-control select option {
  color: #14213d;
}

.field-control input:focus,
.field-control select:focus,
.field-control textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(201, 122, 64, 0.12);
}

.field-control>i {
  position: absolute;
  top: 15px;
  right: 16px;
  color: #7f89a0;
  font-size: 14px;
  pointer-events: none;
  transition: color var(--t-fast);
}

.field-control input:focus~i,
.field-control select:focus~i {
  color: var(--copper);
}

.form-submit::after {
  content: none;
}

.form-submit {
  position: relative;
  width: 100%;
  margin-top: 6px;
  padding: 17px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform var(--t-mid);
}

.form-submit:hover i {
  transform: translateY(-50%) translateX(4px);
}

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: #8b93a7;
}

.form-secure i {
  color: var(--copper);
}

.form-note {
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}

.form-note.ok {
  color: #6cd39a;
}

.form-note.err {
  color: #ec8a8a;
}

/* ---- RIGHT INFO CARDS ---- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30, 45, 78, 0.6), rgba(18, 29, 52, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform var(--t-mid), border-color var(--t-mid),
    box-shadow var(--t-mid);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 122, 64, 0.5);
  box-shadow: 0 22px 44px -26px rgba(0, 0, 0, 0.75);
}

.info-card .ic {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--copper), #a25f2c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 8px 20px -8px rgba(201, 122, 64, 0.7);
}

.info-card .k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 5px;
}

.info-card .v {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.info-card .d {
  color: #8b93a7;
  font-size: 13px;
  margin-top: 3px;
}

/* ---- LIGHT (inverted) variant ---- */
.contact-section--light {
  color: var(--navy);
  background: white;
}

.contact-section--light .contact-bg::before {
  background-image: linear-gradient(rgba(20, 33, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 61, 0.06) 1px, transparent 1px);
}

.contact-section--light .contact-title {
  color: var(--navy);
}

.contact-section--light .contact-intro p {
  color: #55607a;
}

.contact-section--light .contact-form {
  background: #ffffff;
  border-color: rgba(20, 33, 61, 0.1);
  box-shadow: 0 30px 70px -34px rgba(20, 33, 61, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-section--light .form-head h3 {
  color: var(--navy);
}

.contact-section--light .field label {
  color: var(--navy);
}

.contact-section--light .field-control input,
.contact-section--light .field-control select,
.contact-section--light .field-control textarea {
  background: #f6f7f9;
  border-color: rgba(20, 33, 61, 0.14);
  color: var(--navy);
}

.contact-section--light .field-control input::placeholder,
.contact-section--light .field-control textarea::placeholder {
  color: #909aad;
}

.contact-section--light .field-control select {
  color: var(--navy);
}

.contact-section--light .field-control select:invalid {
  color: #909aad;
}

.contact-section--light .field-control>i {
  color: #9aa2b1;
}

.contact-section--light .field-control input:focus,
.contact-section--light .field-control select:focus,
.contact-section--light .field-control textarea:focus {
  border-color: var(--copper);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 122, 64, 0.14);
}

.contact-section--light .form-secure {
  color: #6b7488;
}

.contact-section--light .info-card {
  background: #ffffff;
  border-color: rgba(20, 33, 61, 0.09);
  box-shadow: 0 14px 34px -22px rgba(20, 33, 61, 0.28);
}

.contact-section--light .info-card:hover {
  border-color: rgba(201, 122, 64, 0.5);
  box-shadow: 0 22px 44px -24px rgba(20, 33, 61, 0.4);
}

.contact-section--light .info-card .v {
  color: var(--navy);
}

.contact-section--light .info-card .d {
  color: #6b7488;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-4);
  color: #aab2c5;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 60px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 22px;
}

.footer-brand p {
  font-size: 15px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd5e2;
  transition: all var(--t-fast);
}

.footer-social a:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--copper);
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 15px;
  color: #aab2c5;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-col a:hover {
  color: var(--copper);
  padding-left: 5px;
}

.newsletter p {
  font-size: 15px;
  margin-bottom: 18px;
}

.newsletter-form {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #808aa0;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  border: 0;
  background: var(--copper);
  color: #fff;
  padding: 0 22px;
  font-size: 16px;
  transition: background var(--t-mid);
  overflow: hidden;
  position: relative;
}

.newsletter-form button i {
  transition: transform var(--t-mid);
}

.newsletter-form button:hover {
  background: var(--navy);
}

.newsletter-form button:hover i {
  transform: translateX(4px) rotate(-8deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom .links {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--copper);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background:
    radial-gradient(760px 460px at 86% -8%, rgba(201, 122, 64, 0.16), transparent 62%),
    radial-gradient(900px 600px at 12% 120%, rgba(201, 122, 64, 0.07), transparent 60%),
    linear-gradient(155deg, #182a4d 0%, var(--navy) 48%, #0e192e 100%);
  color: #fff;
  padding: 168px 0 116px;
  overflow: hidden;
}

.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

/* architectural blueprint grid overlay */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(1200px 640px at 88% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(1200px 640px at 88% 0%, #000 0%, transparent 70%);
}

/* copper diagonal accent slice along the bottom */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  z-index: 3;
  background: linear-gradient(90deg, var(--copper) 0%, rgba(201, 122, 64, 0) 62%);
}

/* large faint apartment floor-plan drawing on the right */
.page-hero .blueprint-corner {
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-42%);
  width: min(48%, 640px);
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
  display: none;
}

.page-hero .blueprint-corner svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  margin-bottom: 22px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.03;
  max-width: 760px;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 3px;
  background: var(--copper);
  margin-top: 26px;
}

.breadcrumb {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aeb6c8;
  margin-top: 30px;
  padding: 11px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.breadcrumb a {
  color: #cfd5e2;
  transition: color var(--t-fast);
}

.breadcrumb a:hover {
  color: var(--copper);
}

.breadcrumb .sep {
  color: var(--copper);
  font-weight: 400;
}

.breadcrumb>span:last-child {
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* map */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 380px;
  border: 0;
  width: 100%;
}

/* AOS safety: never keep content invisible if JS fails */
.no-js [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

section.section.section--gray.section--tight {
  padding-bottom: 90px;
}

section#blog {
  padding-top: 0;
}

/* ============================================================
   SINGLE (service / project detail)
   ============================================================ */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.single-main>*+* {
  margin-top: 30px;
}

.single-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0;
}

.single-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.single-main h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
}

.single-main h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.single-main p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.single-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 40px;
  background: rgba(201, 122, 64, 0.12);
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.single-tag i {
  font-size: 12px;
}

/* checklist */
.single-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-check li {
  position: relative;
  padding-left: 34px;
  color: var(--navy);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.5;
}

.single-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(201, 122, 64, 0.14);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* gallery */
.single-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.single-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* sidebar */
.single-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.single-card {
  background: #fff;
  border: 1px solid rgba(20, 33, 61, 0.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 28px;
}

.single-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 14px;
}

.single-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: var(--copper);
}

/* details list (project) */
.detail-rows {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-rows li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
  font-size: 15px;
}

.detail-rows li:last-child {
  border-bottom: 0;
}

.detail-rows .dk {
  color: var(--muted);
}

.detail-rows .dv {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

/* side links */
.side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-links li+li {
  margin-top: 6px;
}

.side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--gray);
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  transition: background var(--t-fast), color var(--t-fast);
}

.side-links a::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--copper);
  transition: transform var(--t-fast), color var(--t-fast);
}

.side-links a:hover {
  background: var(--navy);
  color: #fff;
}

.side-links a:hover::after {
  color: #fff;
  transform: translateX(4px);
}

.side-links a.active {
  background: var(--copper);
  color: #fff;
}

.side-links a.active::after {
  color: #fff;
}

/* navy quote CTA card */
.side-cta {
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  border: 0;
  color: #fff;
}

.side-cta h4 {
  color: #fff;
}

.side-cta p {
  color: #c7cede;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.side-cta .btn {
  width: 100%;
}

.side-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.side-phone i {
  color: var(--copper);
}

/* ============================================================
   FLOATING CONTACT (WhatsApp + Call)
   ============================================================ */
.floating-contact {
  position: fixed;
  left: 24px;
  bottom: 26px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-contact .fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 23px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  animation: fab-pulse 2.1s ease-out infinite;
  transition: transform var(--t-fast);
}

.floating-contact .fab:hover {
  transform: scale(1.09);
}

.fab-whatsapp {
  background: #25d366;
  --pulse: rgba(37, 211, 102, 0.6);
}

.fab-call {
  background: var(--copper);
  --pulse: rgba(201, 122, 64, 0.6);
  animation-delay: 0.7s;
}

@keyframes fab-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--pulse);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact .fab {
    animation: none;
  }
}
