/* ===================================================
   KINSCO PROPERTIES LTD – MASTER STYLESHEET
   === */

:root {
  --col-bg: #0a0c0e;
  --col-surface: #111418;
  --col-surface2: #181d22;
  --col-border: #1f2731;
  --col-primary: #e8a020;
  --col-primary-dark: #c4861a;
  --col-primary-light: #f5b84a;
  --col-text: #e8edf2;
  --col-text-muted: #7a8896;
  --col-text-dim: #4a5662;
  --col-accent: #1a8fc4;
  --col-white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --trans: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--col-bg);
  color: var(--col-text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==============================
   PAGE LOADER
============================== */
.loader-wrap {
  position: fixed; inset: 0; background: #080a0d;
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wrap.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

/* Crane SVG Art */
.loader-crane { position: relative; width: 100px; height: 120px; margin: 0 auto 24px; }
.crane-tower {
  position: absolute; bottom: 0; left: 42px;
  width: 16px; height: 90px;
  background: repeating-linear-gradient(
    180deg, var(--col-primary) 0 8px, transparent 8px 16px
  );
  opacity: 0.9;
}
.crane-boom {
  position: absolute; top: 10px; left: 14px;
  width: 80px; height: 8px;
  background: var(--col-primary);
  clip-path: polygon(0 100%, 4% 0%, 100% 0%, 100% 100%);
  animation: craneSway 2.5s ease-in-out infinite;
  transform-origin: 70% 100%;
}
.crane-hook-line {
  position: absolute; top: 14px; left: 20px;
  width: 2px; height: 0;
  background: var(--col-primary);
  animation: hookDrop 1.5s 0.4s ease-out forwards;
}
.crane-hook {
  position: absolute; top: 14px; left: 14px;
  width: 12px; height: 12px;
  border: 2px solid var(--col-primary);
  border-top: none; border-left: none;
  border-radius: 0 0 8px 0;
  opacity: 0;
  animation: hookAppear 0.3s 1.8s ease forwards;
}
.crane-counter {
  position: absolute; top: 8px; right: 4px;
  width: 20px; height: 12px;
  background: var(--col-primary);
  opacity: 0.7;
}

@keyframes craneSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(3deg); }
}
@keyframes hookDrop {
  to { height: 60px; }
}
@keyframes hookAppear {
  to { opacity: 1; top: 74px; left: 14px; }
}

.loader-bar-wrap {
  width: 200px; height: 3px; background: var(--col-border);
  margin: 0 auto 20px; border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%; background: var(--col-primary);
  transition: width 0.1s linear;
}
.loader-text {
  font-family: var(--font-display); font-size: 28px;
  letter-spacing: 6px; color: var(--col-primary);
}
.loader-sub {
  font-family: var(--font-condensed); font-size: 12px;
  letter-spacing: 4px; color: var(--col-text-muted);
  margin-top: 4px;
}

/* ==============================
   COMING SOON
============================== */
.coming-soon-wrap {
  position: fixed; inset: 0; background: var(--col-bg);
  z-index: 8000; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.cs-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(232,160,32,0.08) 0%, transparent 70%);
}
.cs-content { position: relative; z-index: 1; max-width: 600px; }
.cs-logo { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.cs-logo-k {
  width: 56px; height: 56px; background: var(--col-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; color: #000;
  border-radius: var(--radius);
}
.cs-logo-text { text-align: left; }
.cs-logo-text span { display: block; font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 3px; }
.cs-logo-text small { font-size: 0.7rem; letter-spacing: 2px; color: var(--col-text-muted); }
.cs-title { font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1; margin-bottom: 1.5rem; color: var(--col-text); }
.cs-desc { color: var(--col-text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.cs-info { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }
.cs-info span { font-size: 0.9rem; color: var(--col-text-muted); }
.cs-countdown { display: flex; gap: 1.5rem; justify-content: center; }
.cs-cd-item { text-align: center; }
.cs-cd-item span { display: block; font-family: var(--font-display); font-size: 3rem; color: var(--col-primary); line-height: 1; }
.cs-cd-item small { font-size: 0.7rem; letter-spacing: 2px; color: var(--col-text-muted); }

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 1000; transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(10, 12, 14, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--col-border);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-badge {
  width: 40px; height: 40px; background: var(--col-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; color: #000;
  border-radius: var(--radius); flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 3px; line-height: 1; }
.logo-sub { font-size: 0.58rem; letter-spacing: 1.5px; color: var(--col-text-muted); line-height: 1; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  padding: 0.5rem 0.9rem; font-family: var(--font-condensed);
  font-size: 0.9rem; letter-spacing: 1.5px; font-weight: 600;
  color: var(--col-text-muted); text-transform: uppercase;
  transition: color var(--trans); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2px; background: var(--col-primary);
  transform: scaleX(0); transition: transform var(--trans); transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--col-text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-nav {
  padding: 0.55rem 1.4rem; background: var(--col-primary);
  color: #000; font-family: var(--font-condensed);
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: var(--radius);
  transition: background var(--trans), transform 0.2s;
}
.btn-nav:hover { background: var(--col-primary-light); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--col-text); transition: transform var(--trans), opacity var(--trans);
}
.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); }

/* ==============================
   HERO
============================== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #08090b 0%, #0f1419 40%, #131a22 100%);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 80% 50%, rgba(232,160,32,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,143,196,0.05) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.035;
  background-image:
    linear-gradient(to right, rgba(232,160,32,0.8) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,160,32,0.8) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 2rem 2rem 5rem;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-condensed); font-size: 0.85rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--col-primary); margin-bottom: 1.5rem;
  border: 1px solid rgba(232,160,32,0.25); padding: 0.35rem 0.9rem;
  border-radius: 2px; animation: fadeSlideDown 0.8s ease both;
}
.tag-dot { width: 6px; height: 6px; background: var(--col-primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9; letter-spacing: 2px; margin-bottom: 1.5rem;
}
.ht-line { display: block; overflow: hidden; }
.ht-line span { display: block; }
.ht-line:nth-child(1) { animation: fadeSlideUp 0.8s 0.1s ease both; }
.ht-line:nth-child(2) { animation: fadeSlideUp 0.8s 0.2s ease both; }
.ht-line:nth-child(3) { animation: fadeSlideUp 0.8s 0.3s ease both; }
.ht-line:nth-child(4) { animation: fadeSlideUp 0.8s 0.4s ease both; }
.ht-line.accent { color: var(--col-primary); }
.ht-line.stroke {
  -webkit-text-stroke: 2px var(--col-text);
  color: transparent;
}

.hero-desc {
  font-size: 1.1rem; color: var(--col-text-muted); max-width: 560px;
  margin-bottom: 2.5rem; animation: fadeSlideUp 0.8s 0.5s ease both;
  line-height: 1.8;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; background: var(--col-primary); color: #000;
  font-family: var(--font-condensed); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid var(--col-primary); border-radius: var(--radius);
  transition: background var(--trans), transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--col-primary-light);
  border-color: var(--col-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.3);
}
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; background: transparent; color: var(--col-text);
  font-family: var(--font-condensed); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid var(--col-border); border-radius: var(--radius);
  transition: border-color var(--trans), color var(--trans), transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--col-primary); color: var(--col-primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0; animation: fadeSlideUp 0.8s 0.7s ease both;
}
.stat-item { padding: 0 2rem 0 0; }
.stat-item:first-child { padding-left: 0; }
.stat-item span { font-family: var(--font-display); font-size: 2.5rem; color: var(--col-primary); }
.stat-item .stat-num { margin-right: -2px; }
.stat-item small { display: block; font-size: 0.75rem; letter-spacing: 1px; color: var(--col-text-muted); margin-top: 2px; }
.stat-divider { width: 1px; background: var(--col-border); margin: 0 2rem 0 0; height: 50px; align-self: center; }

.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--col-text-dim); font-size: 0.7rem; letter-spacing: 3px; z-index: 1;
  animation: fadeIn 1s 1.2s ease both;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--col-primary), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; height: 40px; } 50% { opacity: 1; height: 56px; } }

/* ==============================
   MARQUEE
============================== */
.marquee-strip {
  overflow: hidden; background: var(--col-primary);
  padding: 0.85rem 0; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0; align-items: center;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-condensed); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 2px; color: #000;
  padding: 0 1.5rem;
}
.marquee-dot { font-size: 0.6rem !important; padding: 0 !important; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==============================
   SECTIONS GENERAL
============================== */
.section { padding: 7rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-family: var(--font-condensed); font-size: 0.8rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--col-primary); border-bottom: 2px solid var(--col-primary);
  padding-bottom: 4px; margin-bottom: 1rem;
}
.section-tag.light { color: var(--col-primary); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1; margin-bottom: 1rem;
}
.section-title.light { color: var(--col-white); }
.section-desc { font-size: 1.05rem; color: var(--col-text-muted); max-width: 600px; margin: 0 auto; }
.section-desc.light { color: rgba(255,255,255,0.65); }
.accent { color: var(--col-primary); }
.accent-orange { color: var(--col-primary); }

/* Animation on scroll */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ==============================
   SERVICES
============================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px; background: var(--col-border);
}
.service-card {
  background: var(--col-surface); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background var(--trans);
  display: flex; flex-direction: column; gap: 1rem;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--col-primary);
  transform: scaleX(0); transition: transform var(--trans); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--col-surface2); }
.service-card.featured { background: var(--col-surface2); }
.service-card.featured::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--col-border); position: absolute; top: 1.5rem; right: 1.5rem;
  transition: color var(--trans);
}
.service-card:hover .service-num { color: rgba(232,160,32,0.15); }

.service-icon {
  width: 52px; height: 52px; color: var(--col-primary);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { font-family: var(--font-condensed); font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
.service-card p { font-size: 0.9rem; color: var(--col-text-muted); line-height: 1.7; }

.service-list { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.5rem; }
.service-list li {
  font-size: 0.85rem; color: var(--col-text-muted);
  padding-left: 1rem; position: relative;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; background: var(--col-primary); border-radius: 50%;
}

.service-link {
  display: inline-block; font-family: var(--font-condensed); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 1px; color: var(--col-primary);
  margin-top: auto; transition: letter-spacing var(--trans);
}
.service-link:hover { letter-spacing: 2px; }

/* ==============================
   WHY SECTION
============================== */
.why-section { position: relative; overflow: hidden; }
.why-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1117 0%, #111920 100%);
}
.why-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(232,160,32,0.06) 0%, transparent 60%);
}
.why-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-left { display: flex; flex-direction: column; gap: 1.5rem; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(255,255,255,0.05); }
.why-card {
  background: rgba(255,255,255,0.03); padding: 2rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: background var(--trans);
}
.why-card:hover { background: rgba(232,160,32,0.06); }
.why-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-card h4 { font-family: var(--font-condensed); font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 700; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ==============================
   PROJECTS
============================== */
.project-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem; justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.5rem; background: none;
  border: 1px solid var(--col-border); color: var(--col-text-muted);
  font-family: var(--font-condensed); font-size: 0.85rem;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  border-radius: var(--radius); transition: all var(--trans);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--col-primary); border-color: var(--col-primary); color: #000;
}

.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--col-border); min-height: 300px;
}
.project-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--col-surface); aspect-ratio: 4/3;
  transition: transform 0.4s ease;
}
.project-card:hover { z-index: 2; transform: scale(1.02); }
.project-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.project-card:hover .project-card-img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  transition: opacity var(--trans);
}
.project-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--col-surface) 0%, var(--col-surface2) 100%);
  display: flex; align-items: center; justify-content: center;
}
.project-placeholder-art {
  width: 80%; height: 80%;
  position: relative; display: flex; align-items: flex-end; justify-content: center;
}
.pp-building {
  position: absolute; bottom: 0; background: var(--col-border);
  border-top: 2px solid var(--col-primary);
}
.pp-b1 { left: 10%; width: 25%; height: 60%; }
.pp-b2 { left: 38%; width: 30%; height: 80%; }
.pp-b3 { right: 10%; width: 22%; height: 50%; }
.pp-b2 .pp-win { position: absolute; top: 15%; left: 50%; transform: translateX(-50%); width: 40%; aspect-ratio: 1; background: rgba(232,160,32,0.2); border: 1px solid rgba(232,160,32,0.3); }

.project-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; transform: translateY(20px); transition: transform var(--trans);
}
.project-card:hover .project-card-info { transform: translateY(0); }
.project-card-cat {
  font-family: var(--font-condensed); font-size: 0.75rem;
  letter-spacing: 2px; color: var(--col-primary); margin-bottom: 0.3rem;
}
.project-card h4 { font-family: var(--font-condensed); font-size: 1.2rem; font-weight: 700; }
.project-card-loc { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }

.project-card-hover-btn {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; background: var(--col-primary);
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 1rem; border-radius: 50%;
  opacity: 0; transform: scale(0.7); transition: opacity var(--trans), transform var(--trans);
}
.project-card:hover .project-card-hover-btn { opacity: 1; transform: scale(1); }

.projects-cta { text-align: center; margin-top: 3rem; }

.empty-projects {
  grid-column: 1/-1; text-align: center; padding: 4rem 2rem;
  color: var(--col-text-muted); font-size: 0.95rem;
}

/* ==============================
   PROCESS
============================== */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-step {
  padding: 2rem; position: relative; border-top: 2px solid var(--col-border);
  transition: border-color var(--trans);
}
.process-step:hover { border-color: var(--col-primary); }
.step-num {
  font-family: var(--font-display); font-size: 3rem; color: var(--col-primary);
  line-height: 1; margin-bottom: 1rem;
}
.step-connector {
  position: absolute; top: -2px; right: -1px; width: 50%;
  height: 2px; background: var(--col-border);
}
.step-content h4 { font-family: var(--font-condensed); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.88rem; color: var(--col-text-muted); line-height: 1.7; }

/* ==============================
   TESTIMONIALS
============================== */
.testimonials-section { background: var(--col-surface); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-slide {
  display: none; padding: 3rem; background: var(--col-surface2);
  border: 1px solid var(--col-border); max-width: 820px; margin: 0 auto;
  position: relative; animation: fadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }
.testimonial-slide::before {
  content: '"'; font-family: var(--font-display);
  font-size: 8rem; line-height: 0; color: var(--col-primary);
  opacity: 0.15; position: absolute; top: 3rem; left: 2rem;
}
.testimonial-text { font-size: 1.15rem; color: var(--col-text); line-height: 1.8; margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.ta-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; color: #000; flex-shrink: 0;
}
.ta-info strong { display: block; font-family: var(--font-condensed); font-size: 1rem; }
.ta-info span { font-size: 0.8rem; color: var(--col-text-muted); }
.ta-stars { margin-left: auto; color: var(--col-primary); letter-spacing: 2px; }

.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--col-border); cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.slider-dot.active { background: var(--col-primary); transform: scale(1.3); }

/* ==============================
   ABOUT
============================== */
.about-section { position: relative; overflow: hidden; }
.about-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 25vw;
  color: transparent; -webkit-text-stroke: 1px rgba(232,160,32,0.04);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.about-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  aspect-ratio: 4/5; background: var(--col-surface);
  border: 1px solid var(--col-border); overflow: hidden;
}
.about-img-placeholder { width: 100%; height: 100%; overflow: hidden; }
.about-building-art { width: 100%; height: 100%; position: relative; overflow: hidden; }
.ab-sky {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #0d1520 0%, #131e2d 60%, #1a2333 100%);
}
.ab-building { position: absolute; bottom: 15%; background: #1a2133; border-top: 3px solid var(--col-primary); }
.ab-b1 { left: 5%; width: 30%; height: 55%; }
.ab-b2 { left: 35%; width: 35%; height: 75%; z-index: 2; }
.ab-b3 { right: 5%; width: 25%; height: 45%; }
.ab-building::after {
  content: ''; position: absolute; top: 10%; left: 10%; right: 10%;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px;
  height: 60%;
}
.ab-ground { position: absolute; bottom: 0; left: 0; right: 0; height: 15%; background: #0a0e15; }
.ab-crane { position: absolute; top: 8%; right: 10%; width: 60px; }
.ab-crane-mast { width: 6px; height: 60px; background: var(--col-primary); margin: 0 auto; opacity: 0.7; }
.ab-crane-arm { width: 100%; height: 4px; background: var(--col-primary); opacity: 0.7; margin-top: -2px; }
.ab-crane-line { width: 2px; height: 20px; background: var(--col-primary); margin: 0 auto; opacity: 0.5; animation: sway 3s ease-in-out infinite; transform-origin: top; }
@keyframes sway { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }

.about-badge-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--col-primary); color: #000; padding: 1.5rem 2rem;
  display: flex; flex-direction: column; align-items: center;
}
.badge-num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.badge-label { font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-align: center; }

.about-content { display: flex; flex-direction: column; gap: 1.2rem; }
.about-content p { color: var(--col-text-muted); line-height: 1.8; }

.about-mv { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.mv-item { background: var(--col-surface); border: 1px solid var(--col-border); padding: 1.5rem; border-radius: var(--radius); }
.mv-item h4 { font-family: var(--font-condensed); font-size: 1rem; margin-bottom: 0.5rem; font-weight: 700; }
.mv-item p { font-size: 0.85rem; color: var(--col-text-muted); line-height: 1.6; }

.about-meta { display: flex; gap: 2rem; margin-top: 1rem; }
.about-meta-item { display: flex; flex-direction: column; }
.meta-val { font-family: var(--font-condensed); font-size: 1.1rem; font-weight: 700; color: var(--col-primary); }
.meta-label { font-size: 0.78rem; color: var(--col-text-muted); letter-spacing: 1px; }

/* ==============================
   CONTACT
============================== */
.contact-section { background: var(--col-surface); }
.contact-container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info p { color: var(--col-text-muted); line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.cd-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-item strong { display: block; font-family: var(--font-condensed); font-size: 0.85rem; letter-spacing: 1px; color: var(--col-text); margin-bottom: 0.2rem; }
.contact-detail-item span { font-size: 0.9rem; color: var(--col-text-muted); }
.contact-detail-item a:hover { color: var(--col-primary); }

.contact-socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-link {
  width: 38px; height: 38px; border: 1px solid var(--col-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 700;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  border-radius: var(--radius);
}
.social-link:hover { background: var(--col-primary); border-color: var(--col-primary); color: #000; }

.contact-form-wrap { background: var(--col-bg); border: 1px solid var(--col-border); padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-condensed); font-size: 0.8rem; letter-spacing: 1.5px; color: var(--col-text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--col-surface); border: 1px solid var(--col-border);
  color: var(--col-text); padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.95rem;
  border-radius: var(--radius); transition: border-color var(--trans);
  outline: none; width: 100%; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--col-primary);
}
.form-group select option { background: var(--col-surface); }
.form-status { font-size: 0.9rem; padding: 0.75rem; border-radius: var(--radius); display: none; }
.form-status.success { background: rgba(0,200,100,0.1); color: #0c8; border: 1px solid rgba(0,200,100,0.2); display: block; }
.form-status.error { background: rgba(255,60,60,0.1); color: #f44; border: 1px solid rgba(255,60,60,0.2); display: block; }

/* ==============================
   FOOTER
============================== */
.footer { background: var(--col-surface); border-top: 1px solid var(--col-border); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--col-text-muted); line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-col h5 { font-family: var(--font-condensed); font-size: 0.8rem; letter-spacing: 2px; color: var(--col-primary); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li, .footer-col ul a {
  font-size: 0.88rem; color: var(--col-text-muted);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--col-primary); }
.footer-bottom { border-top: 1px solid var(--col-border); padding: 1.2rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom-inner span { font-size: 0.82rem; color: var(--col-text-dim); }

/* ==============================
   PROJECT MODAL
============================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--trans);
  padding: 2rem; backdrop-filter: blur(8px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--col-surface); border: 1px solid var(--col-border);
  max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; transform: scale(0.92); transition: transform var(--trans);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 1;
  width: 36px; height: 36px; background: var(--col-surface2);
  border: 1px solid var(--col-border); color: var(--col-text);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; border-radius: 50%; transition: background var(--trans);
}
.modal-close:hover { background: var(--col-primary); color: #000; }
.modal-content { padding: 2.5rem; }
.modal-img { width: 100%; aspect-ratio: 16/9; background: var(--col-surface2); object-fit: cover; margin-bottom: 1.5rem; }
.modal-cat { font-family: var(--font-condensed); font-size: 0.75rem; letter-spacing: 2px; color: var(--col-primary); margin-bottom: 0.5rem; }
.modal-content h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.modal-content p { color: var(--col-text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.modal-meta { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid var(--col-border); margin-top: 1rem; }
.modal-meta-item strong { display: block; font-size: 0.75rem; letter-spacing: 1px; color: var(--col-text-muted); }
.modal-meta-item span { font-family: var(--font-condensed); font-size: 1rem; color: var(--col-primary); }

/* ==============================
   SCROLL TO TOP
============================== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px; background: var(--col-primary);
  color: #000; border: none; cursor: pointer; border-radius: var(--radius);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--col-primary-light); transform: translateY(-2px); }

/* ==============================
   KEYFRAMES
============================== */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .why-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img-wrap { max-width: 480px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,12,14,0.98); backdrop-filter: blur(20px);
    flex-direction: column; gap: 0; padding: 1rem 0;
    transform: translateY(-120%); transition: transform var(--trans);
    border-bottom: 1px solid var(--col-border); z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 0.9rem 2rem; width: 100%; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }

  .hero-title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 1rem 0 0; }
  .stat-divider { margin-right: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .about-mv { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-badge-card { bottom: -1rem; right: -0.5rem; }
  .section { padding: 4rem 0; }
  .hero-content { padding: 1.5rem 1.5rem 4rem; }
  .modal-content { padding: 1.5rem; }
  .cs-countdown { gap: 1rem; }
  .cs-cd-item span { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .about-meta { flex-wrap: wrap; gap: 1rem; }
}

/* ==============================
   GALLERY SECTION
============================== */
.gallery-section { background: var(--col-surface); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 3px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.large { grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item:hover .gallery-art { transform: scale(1.03); }

.gallery-art {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative; overflow: hidden; transition: transform 0.5s ease;
}

/* GA-1 : Residential building */
.ga-1 { background: linear-gradient(160deg, #0a1020 0%, #111828 100%); }
.ga-1 .ga-sky {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #060d1a 0%, #0d1830 60%, #151f30 100%);
}
.ga-1 .ga-b-main {
  position: absolute; bottom: 18%; left: 15%; width: 70%; height: 55%;
  background: #1a2440; border-top: 4px solid var(--col-primary);
}
.ga-1 .ga-b-main::before {
  content: ''; position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 35% solid transparent; border-right: 35% solid transparent;
  border-bottom: 16px solid var(--col-primary);
}
.ga-1 .ga-windows {
  position: absolute; bottom: 30%; left: 22%; right: 22%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.ga-1 .ga-windows::before {
  content: '';
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  height: 30px; width: 100%;
  background: repeating-linear-gradient(90deg, rgba(232,160,32,0.25) 0 20%, transparent 20% 30%);
}
.ga-1 .ga-ground {
  position: absolute; bottom: 0; left: 0; right: 0; height: 18%;
  background: #080c14;
}

/* GA-2 : Blueprint */
.ga-2 { background: #091426; }
.ga-blueprint {
  position: relative; width: 100%; height: 100%;
  background: #082040; display: flex; align-items: center; justify-content: center;
}
.bp-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,143,196,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,143,196,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}
.bp-lines {
  position: relative; width: 80%; height: 70%;
  border: 1.5px solid rgba(26,143,196,0.6);
}
.bp-lines::before {
  content: '';
  position: absolute; top: 20%; left: 10%; width: 40%; height: 55%;
  border: 1.5px solid rgba(232,160,32,0.7);
}
.bp-lines::after {
  content: '';
  position: absolute; bottom: 0; right: 0; left: 0;
  height: 1.5px; background: rgba(26,143,196,0.5);
  box-shadow: 0 -24px 0 rgba(26,143,196,0.3), 0 -48px 0 rgba(26,143,196,0.2);
}

/* GA-3 : Construction tools illustration */
.ga-3 { background: #100e0a; }
.ga-tools {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    45deg, rgba(232,160,32,0.03) 0 2px, transparent 2px 24px
  );
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.tool-helmet {
  width: 64px; height: 48px;
  background: var(--col-primary);
  border-radius: 50% 50% 10% 10% / 60% 60% 20% 20%;
  position: relative;
}
.tool-helmet::after {
  content: ''; position: absolute; bottom: 0; left: -8px; right: -8px;
  height: 10px; background: #c4861a; border-radius: 4px;
}
.tool-ruler {
  width: 10px; height: 100px;
  background: repeating-linear-gradient(
    180deg, var(--col-primary) 0 8px, #c4861a 8px 16px
  );
  border-radius: 2px; opacity: 0.7;
}

/* GA-4 : Duplex */
.ga-4 { background: #080c12; }
.ga-4 .ga-sky {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #050a14 0%, #0a1520 100%);
}
.ga-duplex {
  position: absolute; bottom: 15%; left: 5%; right: 5%;
  height: 60%; display: flex; gap: 3px; align-items: flex-end;
}
.ga-duplex::before, .ga-duplex::after {
  content: ''; flex: 1; background: #192035;
  border-top: 3px solid var(--col-primary);
}
.ga-duplex::before { height: 100%; }
.ga-duplex::after { height: 85%; }
.ga-4 .ga-ground {
  position: absolute; bottom: 0; left: 0; right: 0; height: 15%;
  background: #060a10;
}

/* GA-5 : Renovation */
.ga-5 { background: #0e0c10; }
.ga-reno {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 1rem;
}
.reno-before {
  flex: 1; height: 80%;
  background: repeating-linear-gradient(
    135deg, #1a1520 0 8px, #201826 8px 16px
  );
  border: 1px solid rgba(255,255,255,0.06); opacity: 0.6;
}
.reno-arrow {
  font-size: 2rem; color: var(--col-primary); flex-shrink: 0; font-weight: 900;
  animation: arrowPulse 1.5s ease-in-out infinite;
}
@keyframes arrowPulse { 0%,100%{transform:translateX(0);opacity:0.7} 50%{transform:translateX(6px);opacity:1} }
.reno-after {
  flex: 1; height: 80%;
  background: linear-gradient(135deg, #1a2035 0%, #202840 100%);
  border: 1px solid rgba(232,160,32,0.3);
}

/* Gallery labels */
.ga-label {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  font-family: var(--font-condensed); font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); z-index: 5;
  padding: 0.4rem 0.6rem;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  border-left: 2px solid var(--col-primary);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-row: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-grid { min-height: unset; }
  .gallery-item { min-height: 200px; }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ==============================
   WHATSAPP FLOAT
============================== */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 900;
  width: 50px; height: 50px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.5s 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
.wa-tooltip {
  position: absolute; right: 60px; white-space: nowrap;
  background: #1a1a1a; color: #fff; font-family: var(--font-condensed);
  font-size: 0.78rem; letter-spacing: 1px; padding: 0.4rem 0.8rem;
  border-radius: 2px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; transform: translateX(8px);
}
.wa-tooltip::after {
  content: ''; position: absolute; top: 50%; right: -6px; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #1a1a1a; border-right: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ==============================
   EXTRA WINDOW DETAILS ON ABOUT ART
============================== */
.ab-b1::after, .ab-b2::after, .ab-b3::after {
  content: '';
  position: absolute; top: 15%; left: 15%; right: 15%; bottom: 15%;
  background: repeating-linear-gradient(
    0deg,
    rgba(232,160,32,0.1) 0 6px,
    transparent 6px 14px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(232,160,32,0.1) 0 6px,
    transparent 6px 20px
  );
}

/* ==============================
   ADDITIONAL MICRO-DETAILS
============================== */
/* Animated entrance for hero stat numbers */
@keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hero-stats .stat-item { animation: countUp 0.6s 0.8s ease both; }
.hero-stats .stat-item:nth-child(3) { animation-delay: 0.9s; }
.hero-stats .stat-item:nth-child(5) { animation-delay: 1.0s; }

/* Hover glow on service cards */
.service-card:hover .service-icon { filter: drop-shadow(0 0 8px rgba(232,160,32,0.5)); }

/* Fade in project cards in grid */
.projects-grid .project-card:nth-child(1) { animation-delay: 0.05s; }
.projects-grid .project-card:nth-child(2) { animation-delay: 0.10s; }
.projects-grid .project-card:nth-child(3) { animation-delay: 0.15s; }
.projects-grid .project-card:nth-child(4) { animation-delay: 0.20s; }
.projects-grid .project-card:nth-child(5) { animation-delay: 0.25s; }
.projects-grid .project-card:nth-child(6) { animation-delay: 0.30s; }

/* Thin accent bar at top of page */
body::before {
  content: ''; display: block; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--col-primary) 0%, var(--col-accent) 100%);
  position: fixed; top: 0; left: 0; z-index: 9999;
}

/* Selection color */
::selection { background: rgba(232,160,32,0.3); color: var(--col-text); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--col-bg); }
::-webkit-scrollbar-thumb { background: var(--col-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--col-primary); }

