/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(14px, 2vw, 16px);
}

/* Lenis Support */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  /* Premium Blueprint Grid Texture */
  background-image:
    linear-gradient(rgba(26, 58, 143, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 143, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(26, 58, 143, 0.02) 2px, transparent 2px),
    linear-gradient(90deg, rgba(26, 58, 143, 0.02) 2px, transparent 2px);
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== DESIGN TOKENS ===== */
:root {
  --blue-900: #0a1f5c;
  --blue-800: #1a3a8f;
  --blue-700: #1e4bb8;
  --blue-600: #2563eb;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --shadow-sm: 0 2px 8px rgba(26, 58, 143, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 58, 143, 0.14);
  --shadow-lg: 0 20px 60px rgba(26, 58, 143, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(16px);
}

/* ===== EXPRESSIVE TYPOGRAPHY ===== */
.reveal-text {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal-text .hero-title-line {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.2s ease;
}

.intro-finished .reveal-text .hero-title-line {
  transform: translateY(0);
  opacity: 1;
}

.intro-finished .reveal-text .hero-title-line:nth-child(2) {
  transition-delay: 0.2s;
}

/* ===== AMBIENT BACKGROUND MOTION ===== */
.liquid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, var(--blue-700), transparent);
  opacity: 0.1;
  filter: blur(100px);
  animation: liquidMove 20s infinite alternate;
}

@keyframes liquidMove {
  0% {
    transform: translate(-5%, -5%) scale(1);
  }

  100% {
    transform: translate(5%, 5%) scale(1.1);
  }
}

.blueprint-grid-hero {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent);
}



/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: #050a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: clip-path 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  clip-path: circle(150% at 50% 50%);
}

#preloader.hidden {
  clip-path: circle(0% at 50% 50%);
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  width: 200px;
  margin-bottom: 20px;
}

.loader-bk {
  letter-spacing: -2px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: strokeAnim 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes strokeAnim {
  to {
    stroke-dashoffset: 0;
    fill: white;
  }
}

.loader-text-wrap {
  overflow: hidden;
  height: 24px;
}

.loader-text {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  transform: translateY(100%);
  animation: slideUpText 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.2s forwards;
}

@keyframes slideUpText {
  to {
    transform: translateY(0);
  }
}

/* ===== DRAFTING PROGRESS ===== */
.drafting-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-700));
  z-index: 12000;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
  transition: width 0.1s ease-out;
}

.preloader-bg-animation {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
}

.bg-line-v {
  width: 1px;
  height: 100%;
  top: 0;
  animation: scaleY 1.5s ease-in-out;
}

.bg-line-h {
  height: 1px;
  width: 100%;
  left: 0;
  animation: scaleX 1.5s ease-in-out;
}

@keyframes scaleY {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes scaleX {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ===== UTILITY ===== */
.container {
  max-width: clamp(800px, 90vw, 1200px);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 24px);
}

.section-pad {
  padding: clamp(60px, 10vw, 100px) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--blue-700);
}

.section-sub {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-700);
  color: white;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 32px);
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 15px);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--blue-800);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.45);
    letter-spacing: 0.2px;
  }
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: clamp(10px, 2vw, 13px) clamp(20px, 4vw, 32px);
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 15px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

@media (hover: hover) {
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
  }
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--blue-800);
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 32px);
  border-radius: 100px;
  font-weight: 700;
  font-size: clamp(13px, 2vw, 15px);
  transition: var(--transition);
}

@media (hover: hover) {
  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: clamp(10px, 2vw, 13px) clamp(20px, 4vw, 32px);
  border-radius: 100px;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 15px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

@media (hover: hover) {
  .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--blue-700);
  color: white;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

@media (hover: hover) {
  .btn-nav:hover {
    background: var(--blue-900);
    transform: translateY(-1px);
  }
}

.full-w {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: clamp(12px, 2.5vw, 18px) 0;
  transition: all 0.4s ease;
}

.nav-link {
  color: white;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-400);
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) {
  .nav-link:hover {
    color: var(--blue-400);
  }

  .nav-link:hover::after {
    width: 100%;
  }
}

#navbar.scrolled .nav-link {
  color: var(--gray-700);
}

#navbar.scrolled .nav-link::after {
  background: var(--blue-700);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--blue-700);
}

#navbar.scrolled .logo-svg {
  color: var(--blue-800);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(12px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 40px);
}

.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
}

.logo-img {
  height: clamp(36px, 8vw, 52px);
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: clamp(2px, 1vw, 4px) clamp(6px, 1.5vw, 10px);
  transition: box-shadow 0.3s;
}

.logo-img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#navbar.scrolled .logo-img {
  background: transparent;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-400);
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) {
  .nav-link:hover {
    color: white;
  }

  .nav-link:hover::after {
    width: 100%;
  }
}

#navbar.scrolled .nav-link {
  color: var(--gray-700);
}

#navbar.scrolled .nav-link::after {
  background: var(--blue-700);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
  color: var(--blue-700);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: clamp(4px, 2vw, 8px);
  margin-left: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: clamp(24px, 5vw, 28px);
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .hamburger span {
  background: var(--blue-800);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a1f5c;
  will-change: transform;
}

/* ===== BLUEPRINT LINE ANIMATIONS ===== */
.blueprint-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  overflow: hidden;
}

.blueprint-line {
  position: absolute;
  background: var(--blue-400);
  opacity: 0.6;
  box-shadow: 0 0 10px var(--blue-400);
}

.draw-h {
  height: 1px;
  width: 0;
  animation: drawLineH 4s ease-in-out infinite alternate;
}

.draw-v {
  width: 1px;
  height: 0;
  animation: drawLineV 4s ease-in-out infinite alternate;
}

@keyframes drawLineH {
  to {
    width: 100%;
  }
}

@keyframes drawLineV {
  to {
    height: 100%;
  }
}

.dimension-line {
  position: absolute;
  color: var(--blue-400);
  font-family: monospace;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  opacity: 0.5;
}

.dimension-line::before,
.dimension-line::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: currentColor;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
      rgba(5, 10, 26, 0.8) 0%,
      rgba(10, 31, 92, 0.6) 50%,
      rgba(5, 10, 26, 0.8) 100%);
}

.hero-bg-NOT-USED {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  animation-delay: -3s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 25%;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-20px) rotate(5deg)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-title-line {
  display: block;
}

.hero-title em {
  font-style: italic;
  color: var(--blue-400);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease 0.6s both;
}

/* ===== DRAFTING WIREFRAME STATS ===== */
.hero-stats {
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow:
    0 0 40px rgba(10, 31, 92, 0.5),
    inset 0 0 20px rgba(96, 165, 250, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  animation: clayFloat 6s ease-in-out infinite alternate;
}

.hero-stats::before {
  content: '01-A';
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--blue-700);
  color: var(--blue-400);
  font-family: monospace;
  font-size: 8px;
  padding: 2px 6px;
  border: 1px solid var(--blue-400);
}

.hero-stats::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-left: 1px solid var(--blue-400);
  border-right: 1px solid var(--blue-400);
  opacity: 0.3;
  pointer-events: none;
}

@keyframes clayFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.stat-num {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-400);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(96, 165, 250, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--blue-700);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.marquee-track .dot {
  color: var(--blue-400);
  font-size: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: var(--shadow-lg);
  transform: rotateX(10deg) rotateY(-10deg) rotateZ(2deg);
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-visual:hover .about-img-main {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-fallback {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700)) !important;
}

.about-img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.about-badge-float {
  background: white;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.badge-num {
  display: block;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--blue-700);
}

.badge-txt {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.about-img-side {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 48%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-400));
}

.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-dots {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--blue-200, #bfdbfe) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: -1;
  border-radius: 8px;
}

.about-lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-text {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 14px);
  color: var(--blue-900);
  transition: var(--transition);
}

@media (hover: hover) {
  .pillar:hover {
    background: var(--blue-100);
    transform: translateX(4px);
  }
}

.pillar i {
  color: var(--blue-600);
  font-size: 18px;
}

/* ===== SERVICES ===== */
.services {
  background: #0d1b3e;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.services .section-tag {
  color: var(--blue-400);
}

.services .section-title {
  color: white;
}

.services .section-title span {
  color: var(--blue-400);
}

.services .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 28px);
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 36px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(96, 165, 250, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.2), 0 0 0 1px rgba(96, 165, 250, 0.4);
    border-color: var(--blue-400);
    background: rgba(96, 165, 250, 0.1);
  }

  .service-card:hover::before {
    color: rgba(96, 165, 250, 0.12);
    transform: scale(1.2) translate(-10px, 10px);
  }
}

.service-card.featured {
  background: rgba(37, 99, 235, 0.25);
  color: white;
  border-color: var(--blue-500);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.3), inset 0 0 20px rgba(96, 165, 250, 0.05);
}

.service-card.featured::before {
  color: rgba(255, 255, 255, 0.05);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--blue-300);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.service-card.featured h3 {
  color: white;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card.featured .service-link {
  color: var(--blue-300);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(96, 165, 250, 0.12);
  color: var(--blue-400);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

@media (hover: hover) {
  .service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.25);
  }
}

.service-card h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: clamp(13px, 1.5vw, 14px);
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-400);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
  margin-top: auto;
}

@media (hover: hover) {
  .service-link:hover {
    gap: 12px;
  }
}

/* ===== PROCESS ===== */
.process {
  background: var(--white);
}

.process .section-tag {
  color: var(--blue-600);
}

.process .section-title {
  color: var(--blue-900);
}

.process .section-title span {
  color: var(--blue-600);
}

.process .section-sub {
  color: var(--gray-500);
  max-width: 700px;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 40px);
  margin-bottom: clamp(36px, 8vw, 48px);
  align-items: stretch;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .process-step {
    gap: 16px;
  }
}

.step-marker {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2px;
}

.step-marker .step-icon {
  width: clamp(46px, 10vw, 56px);
  height: clamp(46px, 10vw, 56px);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 4vw, 28px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  transition: var(--transition);
  flex-shrink: 0;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

@media (hover: hover) {
  .process-step:hover .step-marker .step-icon {
    background: var(--blue-700);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  }
}

.process-step:active .step-marker .step-icon {
  transform: translateY(0);
}

.step-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

@media (hover: hover) {
  .process-step:hover .step-card {
    background: var(--blue-50);
    border-color: var(--blue-200);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  }
}

.step-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .step-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

.step-header h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--blue-900);
  margin: 0;
  line-height: 1.3;
}

.step-phase {
  color: var(--blue-600);
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.step-description {
  color: var(--gray-600);
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .step-header {
    flex-wrap: wrap;
  }

  .step-phase {
    order: -1;
    flex-basis: 100%;
    margin-bottom: 4px;
  }
}

/* ===== PROJECTS ===== */
.projects {
  background: white;
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.projects-grid.two-items {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-inline: auto;
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.project-card.large {
  grid-column: span 2;
}

.project-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.project-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  animation: shimmer 2s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

.project-card.large .project-img {
  aspect-ratio: 16/9;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

/* ===== FAUX 3D & PERSPECTIVE ===== */
.project-card {
  perspective: 1000px;
}

.project-img {
  transform: rotateY(0deg) rotateX(0deg);
  transition: transform 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-card:hover .project-img {
  transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

/* ===== STOP-MOTION JITTER (Subtle) ===== */
.loader-bk {
  animation: strokeAnim 2s cubic-bezier(0.65, 0, 0.35, 1) forwards, jitter 0.2s infinite alternate;
}

@keyframes jitter {
  0% {
    transform: translate(1px, 1px);
  }

  100% {
    transform: translate(-1px, -1px);
  }
}

.residential-gradient {
  background: linear-gradient(135deg, #1a3a8f, #2563eb) !important;
}

.commercial-gradient {
  background: linear-gradient(135deg, #0a1f5c, #1e4bb8) !important;
}

.interior-gradient {
  background: linear-gradient(135deg, #1e4bb8, #60a5fa) !important;
}

.qasr-gradient {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700)) !important;
}


.img-fb {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700)) !important;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 99, 235, 0.95) 0%, rgba(37, 99, 235, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay,
.project-overlay.always-show {
  opacity: 1;
}

.project-cat {
  color: var(--blue-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.project-overlay h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 12px;
}

.project-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  align-self: flex-start;
  font-size: 14px;
}

.project-btn:hover {
  background: white;
  color: var(--blue-700);
  transform: scale(1.1);
}

/* ===== MAP ENHANCEMENTS (Glass & Custom Marker) ===== */
.map-marker-v2 {
  position: relative;
  width: 40px;
  height: 40px;
}

.marker-core {
  width: 40px;
  height: 40px;
  background: var(--blue-700);
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(26, 58, 143, 0.4);
  z-index: 2;
  position: relative;
}

.marker-core i {
  color: white;
  transform: rotate(45deg);
  font-size: 16px;
}

.marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--blue-400);
  border-radius: 50%;
  opacity: 0.6;
  animation: pulseMarker 2s ease-out infinite;
  z-index: 1;
}

@keyframes pulseMarker {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.map-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
}

.map-popup-custom {
  font-family: 'Outfit', sans-serif;
  padding: 5px;
}

.map-popup-custom strong {
  color: var(--blue-800);
  font-size: 14px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.testimonials .section-tag {
  color: var(--blue-400);
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-title span {
  color: var(--blue-400);
}

.testimonials .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-slider {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 0 40px rgba(10, 31, 92, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(10px);
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.testi-quote {
  color: var(--blue-400);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.testimonial-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: white;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
}

.testi-author strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.testi-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.testi-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--blue-400);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.slider-controls button:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: white;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot-btn.active {
  background: var(--blue-400);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  padding: clamp(60px, 10vw, 80px) clamp(16px, 4vw, 24px);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.05);
}

.s1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.s2 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: 10%;
}

.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: white;
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  background: white;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 8vw, 64px);
  align-items: start;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--blue-50);
  border: none;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  transition: var(--transition);
}

@media (hover: hover) {
  .info-card:hover {
    background: var(--blue-100);
    transform: translateX(4px);
  }
}

.info-card i {
  color: var(--blue-700);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.info-card span,
.info-card a {
  color: var(--gray-500);
  font-size: clamp(13px, 2vw, 15px);
}

.info-card a:active {
  color: var(--blue-700);
}

@media (hover: hover) {
  .info-card a:hover {
    color: var(--blue-700);
  }
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

@media (hover: hover) {
  .social-btn:hover {
    background: var(--blue-700);
    color: white;
    transform: translateY(-3px);
  }
}

.social-btn:active {
  transform: scale(0.95);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: clamp(12px, 2vw, 14px) clamp(14px, 2vw, 18px);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 2vw, 15px);
  color: var(--gray-700);
  background: white;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 2vw, 15px);
}

.form-success.show {
  display: flex;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-900);
}

.footer-top {
  padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 6vw, 60px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 6vw, 48px);
}

.footer-logo-img {
  height: clamp(60px, 10vw, 72px);
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.8;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 2vw, 14px);
  transition: var(--transition);
  display: inline-block;
}

@media (hover: hover) {
  .footer-links ul li a:hover {
    color: white;
    padding-left: 4px;
  }
}

.footer-links ul li a:active {
  color: white;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 2vw, 14px);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i {
  color: var(--blue-400);
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

@media (hover: hover) {
  .footer-socials a:hover {
    background: var(--blue-600);
    color: white;
    transform: translateY(-3px);
  }
}

.footer-socials a:active {
  transform: scale(0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(11px, 2vw, 13px);
}

.footer-bottom .fa-heart {
  color: #ef4444;
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-800);
  color: white;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 58, 143, 0.45);
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: wiggle 3s ease-in-out infinite 5s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: var(--blue-900);
  box-shadow: 0 8px 32px rgba(26, 58, 143, 0.55);
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0)
  }

  25% {
    transform: rotate(-10deg)
  }

  50% {
    transform: rotate(10deg)
  }

  75% {
    transform: rotate(-5deg)
  }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-700);
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--blue-900);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS & REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */

/* Large Desktop */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

/* Desktop & Large Tablets */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats {
    padding: 20px 32px;
    gap: 24px;
  }
}

/* Tablets & Medium Screens */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
    order: 2;
  }

  .about-content {
    order: 1;
  }

  .about-pillars {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card.large {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050a1a;
    padding: 100px 40px;
    box-shadow: none;
    gap: 15px;
    z-index: 999;
    text-align: center;
  }

  .nav-links.open .nav-link {
    color: white;
    font-size: 24px;
    font-weight: 700;
    border: none;
    padding: 10px;
  }

  .nav-links.open .nav-link:hover,
  .nav-links.open .nav-link.active {
    color: var(--blue-400);
    background: transparent;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.open span {
    background: white !important;
  }

  .projects-grid,
  .projects-grid.two-items {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
  }

  .stat {
    flex: 1 1 140px;
  }

  .stat-divider {
    display: none;
  }

  .process-timeline::before {
    left: 28px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 60px;
  }

  .step-marker {
    position: absolute;
    left: 0;
    top: 5px;
  }

  .about-img-side {
    width: 60%;
    right: -10px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .btn-primary,
  .btn-outline {
    width: auto;
    flex: 1;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }

  .testi-stars {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
  }

  .testi-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-outline-white {
    width: 100%;
  }

  .projects-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .nav-container {
    gap: clamp(12px, 3vw, 24px);
    padding: 0 clamp(12px, 3vw, 16px);
  }

  .logo-img {
    height: clamp(36px, 8vw, 48px);
  }

  .slider-controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .slider-controls button {
    width: 40px;
    height: 40px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .whatsapp-float,
  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .whatsapp-float {
    bottom: 70px;
    right: 16px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

  .section-header {
    margin-bottom: clamp(40px, 6vw, 64px);
  }

  .service-card::before {
    font-size: 2.5rem;
  }

  .process-step {
    padding: 0;
  }

  .marquee-track span {
    font-size: 12px;
  }

  .project-overlay {
    padding: 20px;
  }

  .project-overlay h3 {
    font-size: 1rem;
  }
}

/* Extra Small Phones */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .section-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .nav-container {
    gap: 16px;
  }

  .footer-socials {
    justify-content: center;
  }

  #bk-map {
    height: 250px;
  }

  .scrolling-stats {
    padding: 16px 12px;
  }

  .hero-stats {
    padding: 16px 20px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .about-img-side {
    width: 45%;
    bottom: -15px;
    right: -10px;
  }
}

/* Landscape Phones */
@media (max-width: 900px) and (max-height: 500px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    padding: 40px 24px;
  }

  .hero-stats {
    flex-direction: row;
    gap: 16px;
  }

  .stat-divider {
    display: block;
    height: 40px;
  }
}

/* ===== FORM ERROR ===== */
.form-error {
  display: none;
  background: #fee2e2;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}

.form-error.show {
  display: flex;
}

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--gray-100);
  padding: clamp(80px, 12vw, 100px) 0;
}

.map-header {
  text-align: center;
  margin-bottom: 48px;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

#bk-map {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 0;
  position: relative;
  border: 3px solid white;
}

/* Override Leaflet z-index to stay below navbar */
.leaflet-top,
.leaflet-bottom {
  z-index: 500 !important;
}

.map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  background: var(--blue-900);
  color: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  width: 300px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-card-logo {
  margin-bottom: 16px;
}

.map-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.map-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.map-card p i {
  color: var(--blue-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.map-directions-btn:hover {
  background: var(--blue-400);
  color: var(--blue-900);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .map-card {
    position: static;
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: -4px;
  }

  #bk-map {
    border-radius: var(--radius) var(--radius) 0 0;
    height: 300px;
  }

  .map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
  }
}

.info-card strong {
  display: block;
  font-size: 14px;
  color: var(--blue-900);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.info-card span,
.info-card a {
  color: var(--gray-500);
  font-size: clamp(13px, 2vw, 15px);
}

.info-card a:active {
  color: var(--blue-700);
}

@media (hover: hover) {
  .info-card a:hover {
    color: var(--blue-700);
  }
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

@media (hover: hover) {
  .social-btn:hover {
    background: var(--blue-700);
    color: white;
    transform: translateY(-3px);
  }
}

.social-btn:active {
  transform: scale(0.95);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: clamp(12px, 2vw, 14px) clamp(14px, 2vw, 18px);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 2vw, 15px);
  color: var(--gray-700);
  background: white;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.form-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 2vw, 15px);
}

.form-success.show {
  display: flex;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-900);
}

.footer-top {
  padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 6vw, 60px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 6vw, 48px);
}

.footer-logo-svg {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.8;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 2vw, 14px);
  transition: var(--transition);
  display: inline-block;
}

@media (hover: hover) {
  .footer-links ul li a:hover {
    color: white;
    padding-left: 4px;
  }
}

.footer-links ul li a:active {
  color: white;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(13px, 2vw, 14px);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i {
  color: var(--blue-400);
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

@media (hover: hover) {
  .footer-socials a:hover {
    background: var(--blue-600);
    color: white;
    transform: translateY(-3px);
  }
}

.footer-socials a:active {
  transform: scale(0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(11px, 2vw, 13px);
}

.footer-bottom .fa-heart {
  color: #ef4444;
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-800);
  color: white;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 58, 143, 0.45);
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: wiggle 3s ease-in-out infinite 5s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  background: var(--blue-900);
  box-shadow: 0 8px 32px rgba(26, 58, 143, 0.55);
}

@keyframes wiggle {

  0%,
  100% {
    transform: rotate(0)
  }

  25% {
    transform: rotate(-10deg)
  }

  50% {
    transform: rotate(10deg)
  }

  75% {
    transform: rotate(-5deg)
  }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-700);
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--blue-900);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS & REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: clamp(48px, 8vw, 72px) 0;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: clamp(16px, 4vw, 24px);
    box-shadow: var(--shadow-lg);
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-links.open .nav-link {
    color: var(--gray-700);
    padding: clamp(14px, 3vw, 16px);
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 500;
    transition: var(--transition);
  }

  .nav-links.open .nav-link.active,
  .nav-links.open .nav-link:hover {
    color: var(--blue-700);
    background: var(--blue-50);
    padding-left: clamp(16px, 4vw, 20px);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  #navbar.scrolled .hamburger.open span {
    background: var(--blue-800);
  }

  .hamburger.open span {
    background: var(--blue-800);
  }

  .projects-grid,
  .projects-grid.two-items {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
    padding: 20px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .stat {
    width: 100%;
  }

  .stat-divider {
    display: none;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-connector {
    transform: rotate(90deg);
    margin: 0;
    padding: 8px 0;
  }

  .process-step {
    min-width: unset;
  }

  .cta-content {
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }

  .cta-content h2 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-img-side {
    right: 0;
    bottom: -20px;
    width: 50%;
  }

  .about-content {
    padding: 0 clamp(16px, 4vw, 24px);
  }

  .hero-content {
    padding: clamp(80px, 12vw, 120px) clamp(16px, 4vw, 24px) clamp(60px, 8vw, 80px);
  }

  .testimonial-card {
    padding: clamp(32px, 6vw, 48px);
  }

  .map-card {
    position: static;
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: -4px;
  }

  #bk-map {
    border-radius: var(--radius) var(--radius) 0 0;
    height: 300px;
  }

  .map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
    width: 100%;
  }

  .testi-stars {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
  }

  .testi-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-outline-white {
    width: 100%;
  }

  .projects-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .nav-container {
    gap: clamp(12px, 3vw, 24px);
    padding: 0 clamp(12px, 3vw, 16px);
  }

  .logo-img {
    height: clamp(36px, 8vw, 48px);
  }

  .slider-controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .slider-controls button {
    width: 40px;
    height: 40px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .whatsapp-float,
  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .whatsapp-float {
    bottom: 70px;
    right: 16px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

  .section-header {
    margin-bottom: clamp(40px, 6vw, 64px);
  }

  .service-card::before {
    font-size: 2.5rem;
  }

  .process-step {
    padding: 32px 16px;
  }

  .marque-track span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .section-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .nav-container {
    gap: 16px;
  }

  .footer-socials {
    justify-content: center;
  }

  #bk-map {
    height: 250px;
  }

  .scrolling-stats {
    padding: 16px 12px;
  }
}

/* ===== FORM ERROR ===== */
.form-error {
  display: none;
  background: #fee2e2;
  color: #991b1b;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}

.form-error.show {
  display: flex;
}

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--gray-100);
  padding: clamp(80px, 12vw, 100px) 0;
}

.map-header {
  text-align: center;
  margin-bottom: 48px;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

#bk-map {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 0;
  position: relative;
  border: 3px solid white;
}

/* Override Leaflet z-index to stay below navbar */
.leaflet-top,
.leaflet-bottom {
  z-index: 500 !important;
}

.map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  background: var(--blue-900);
  color: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  width: 300px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-card-logo {
  margin-bottom: 16px;
}

.map-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 12px;
}

.map-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.map-card p i {
  color: var(--blue-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.map-directions-btn:hover {
  background: var(--blue-400);
  color: var(--blue-900);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .map-card {
    position: static;
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: -4px;
  }

  #bk-map {
    border-radius: var(--radius) var(--radius) 0 0;
    height: 300px;
  }

  .map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
  }
}

/* ===== PROJECT MODAL ===== */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.project-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 26, 0.95);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--blue-700);
  color: white;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.modal-nav:hover {
  background: white;
  color: var(--blue-900);
}

.modal-nav.prev { left: -70px; }
.modal-nav.next { right: -70px; }

@media (max-width: 1400px) {
  .modal-nav.prev { left: 20px; }
  .modal-nav.next { right: 20px; }
}

.modal-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
}

.modal-body img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .modal-body img {
    height: 300px;
  }
}

.modal-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--blue-900);
  margin-bottom: 16px;
}

.modal-info p {
  color: var(--gray-500);
  font-size: 1.1rem;
  line-height: 1.8;
}

.project-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-700);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.project-btn:hover {
  background: var(--blue-900);
  transform: scale(1.1);
}

.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}