:root {
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --dark: #1a1a1a;
  --charcoal: #2d2d2d;
  --mid: #5a5a5a;
  --light: #f7f5f2;
  --white: #ffffff;
  --accent: #8b1c1c;
  --black: #3d3d3d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 8px;
  animation: pulseText 1.5s ease-in-out infinite;
}
.loader-logo span {
  color: var(--gold);
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: #333;
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loadFill 2s ease-in-out forwards;
}
@keyframes loadFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes pulseText {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 1px;
  img{
    width: 100%;
  }
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: 3px;
}
.nav-logo-text .sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  transition:
    transform 0.3s,
    box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 146, 42, 0.35) !important;
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--white); */
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)) ,url("Assets/bg.avif");
  background-size: cover;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Animated construction lines */
.hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.06;
}
.hero-content {

  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200, 146, 42, 0.1);
  border: 1px solid rgba(200, 146, 42, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 12px;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-title .gold {
  color: var(--gold);
}
.hero-title .line2 {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 10px;
  color: rgb(41, 41, 41);
  margin-top: 8px;
}
.hero-desc {
  font-size: 1.05rem;
  color: black;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.9s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.1s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  padding: 16px 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 6px 25px rgba(200, 146, 42, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 146, 42, 0.4);
}
.btn-outline {
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 14px 38px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-3px);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Floating construction animation */
.hero-float {
  position: absolute;
  opacity: 0.07;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}
.hero-float:nth-child(1) {
  top: 15%;
  right: 8%;
  width: 180px;
  animation-delay: 0s;
}
.hero-float:nth-child(2) {
  bottom: 20%;
  left: 6%;
  width: 140px;
  animation-delay: -3s;
}
.hero-float:nth-child(3) {
  top: 40%;
  right: 3%;
  width: 100px;
  animation-delay: -1.5s;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  padding: 36px 60px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 0 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-tag::before {
  right: calc(100% + 12px);
}
.section-tag::after {
  left: calc(100% + 12px);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-title span {
  color: var(--gold);
}
.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== SERVICES ===== */

#services {
    background: var(--bg3);
    padding: 80px 0;
    }
    .ser-head {
    text-align: center;
    margin-bottom: 44px;
    padding: 0 60px;
    }
    .ser-track {
    display: flex;
    gap: 4px;
    width: max-content;
    animation: serMove 36s linear infinite;
    }
    .ser-track:hover {
    animation-play-state: paused;
    }
    .ser-item {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 300px;
    height: 210px;
    }
    .ser-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    }
    .ser-item:hover img {
    transform: scale(1.1);
    }
    .ser-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.82));
    padding: 14px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.55rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    }
    @keyframes serMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    }

/* ===== ANIMATED CONSTRUCTION VIDEO SECTION ===== */
#animation {
  padding: 100px 60px;
  background: var(--white);
  overflow: hidden;
}
.anim-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.anim-text {
}
.anim-text .section-header {
  text-align: left;
  margin-bottom: 30px;
}
.anim-text .section-tag::before {
  display: none;
}
.anim-text .section-line {
  margin: 20px 0 0;
}
.anim-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  margin-top: 24px;
}
.anim-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.anim-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.anim-feat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anim-feat-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.anim-feat-text strong {
  font-size: 0.92rem;
  display: block;
  color: var(--dark);
  margin-bottom: 2px;
}
.anim-feat-text span {
  font-size: 0.82rem;
  color: var(--mid);
}

/* Building animation */
.building-anim {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.city-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.4;
}
.building {
  position: relative;
  background: linear-gradient(to top, #e8e0d4, #f5f0ea);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 2px 2px 0 0;
  overflow: hidden;
  animation: buildRise 2s ease both;
}
@keyframes buildRise {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
.building::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    transparent,
    transparent 18px,
    rgba(200, 146, 42, 0.08) 18px,
    rgba(200, 146, 42, 0.08) 20px
  );
}
.building::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 8px;
  background: var(--gold);
  opacity: 0.5;
}
.b1 {
  width: 55px;
  height: 200px;
  animation-delay: 0.2s;
}
.b2 {
  width: 70px;
  height: 320px;
  animation-delay: 0.4s;
}
.b3 {
  width: 90px;
  height: 420px;
  animation-delay: 0.1s;
}
.b4 {
  width: 65px;
  height: 280px;
  animation-delay: 0.6s;
}
.b5 {
  width: 50px;
  height: 180px;
  animation-delay: 0.8s;
}
.b6 {
  width: 80px;
  height: 350px;
  animation-delay: 0.3s;
}
.b7 {
  width: 45px;
  height: 150px;
  animation-delay: 0.9s;
}

.crane {
  position: absolute;
  top: 20px;
  right: 60px;
  animation: craneSway 4s ease-in-out infinite;
}
@keyframes craneSway {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
.crane svg {
  width: 80px;
  height: 140px;
}

.windows-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.win-dot {
  position: absolute;
  width: 6px;
  height: 4px;
  background: rgba(255, 220, 80, 0.8);
  border-radius: 1px;
  animation: winBlink 3s ease-in-out infinite;
}
@keyframes winBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ===== PROJECTS ===== */
#projects {
  padding: 100px 60px;
  background: var(--light);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
#pc-2{
  height: 439px;
  width: 400px;
}
#pc-5{
  height: 285px;
  width: 400px;
}
.project-card.visible {
  opacity: 1;
  transform: scale(1);
}
.project-card:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}
.proj-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
  img{
    width: 100%;
    height: 100%;
  }
}
.project-card:hover .proj-bg {
  transform: scale(1.06);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-card:hover .proj-overlay {
  opacity: 1;
}
.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  opacity: 0;
}
.project-card:hover .proj-info {
  opacity: 1;
  transform: translateY(0);
}
.proj-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.proj-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.proj-loc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Animated project backgrounds */
.proj-bg-1 {
  background: linear-gradient(135deg, #c9a96e 0%, #a67c52 100%);
}
.proj-bg-2 {
  background: linear-gradient(135deg, #7a8c9e 0%, #4a5c70 100%);
}
.proj-bg-3 {
  background: linear-gradient(135deg, #8ba888 0%, #5a7a5a 100%);
}
.proj-bg-4 {
  background: linear-gradient(135deg, #b8836b 0%, #8b5a4a 100%);
}

/* SVG building silhouettes for project cards */
.proj-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* ===== WHY US ===== */
#why {
  padding: 100px 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 146, 42, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-header .section-title {
  color: white;
}
.why-grid {
  /* display: grid; */
  /* border: 1px solid red; */
  /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}
.why-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  width: 300px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color 0.3s,
    background 0.3s;
}
.why-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.why-item:hover {
  border-color: rgba(200, 146, 42, 0.4);
  background: rgba(200, 146, 42, 0.04);
  transform: translateY(-4px);
}
.why-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(200, 146, 42, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.why-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* ===== PROCESS ===== */
#process {
  padding: 100px 60px;
  background: var(--white);
}
.process-steps {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.process-line {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: rgba(200, 146, 42, 0.2);
  z-index: 0;
}
.process-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 2s ease;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.process-step {
  text-align: center;
}
.step-circle {
  width: 64px;
  height: 64px;
  background: white;
  border: 2px solid rgba(200, 146, 42, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  transition: all 0.4s ease;
  position: relative;
}
.process-step:hover .step-circle {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(200, 146, 42, 0.35);
}
.step-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 100px 60px;
  background: var(--light);
}
.testimonials-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-item {
  display: none;
  animation: fadeInUp 0.6s ease both;
}
.testimonial-item.active {
  display: block;
}
.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 36px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}
.author-name {
  font-weight: 600;
  color: var(--dark);
}
.author-role {
  font-size: 0.8rem;
  color: var(--mid);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}
.t-dot {
  width: 8px;
  height: 8px;
  background: rgba(200, 146, 42, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== CONTACT ===== */
#contact {
  padding: 100px 60px;
  background: var(--white);
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-header {
  text-align: left;
  margin-bottom: 40px;
}
.contact-info .section-tag::before {
  display: none;
}
.contact-info .section-line {
  margin: 20px 0 0;
}
.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(200, 146, 42, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}
.contact-item-text strong {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 4px;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
}
.contact-item-text a{
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
  text-decoration: none;
}

.contact-form {
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 146, 42, 0.35);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 60px 60px 30px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo .nav-logo-icon {
}
.footer-logo .brand {
  color: white;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: rgb(129, 129, 129);
}
.social-btn:hover {
  background: var(--gold);
}
.social-btn svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  text-decoration: none;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition:
    color 0.3s,
    padding-left 0.3s;
  display: block;
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 80px 40px 40px;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}
.mobile-overlay.open {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav,
  nav.scrolled {
    padding: 18px 30px;
  }
  .nav-links {
    gap: 24px;
  }
  #services,
  #projects,
  #animation,
  #why,
  #process,
  #testimonials,
  #contact,
  footer {
    padding: 70px 30px;
  }
  .stats-bar {
    padding: 30px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .anim-container {
    grid-template-columns: 1fr;
  }
  .building-anim {
    height: 300px;
  }
}
@media (max-width: 1300px){
  #pc-2{
    height: 200px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .building-anim {
    margin-top: 300px;
    height: 100px;
    width: 360px;
  }
  #pc-2{
    height: 200px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card:first-child {
    grid-column: 1;
  }
  .proj-bg{
    width: 380px;
    display: flex;
    justify-content: center;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .stat-divider {
    display: none;
  }
  .anim-text{
    p{
      width: 100%;
    }
  }
}
@media (max-width: 480px) {
  .anim-text{
    p{
      width: 100%;
    }
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
