/* ============================
   RS CONSTRUCTION - PREMIUM CSS
   Black & Gold Theme
   ============================ */

:root {
  --black: #142537;
  --black2: #111111;
  --black3: #1a1a1a;
  --black4: #222222;
  --gold: #fdb913;
  --gold2: #fdb913;
  --gold3: #fdb913;
  --gold-dark: #fdb913;
  --gold-muted: rgba(201, 152, 58, 0.15);
  --gold-border: rgba(201, 152, 58, 0.25);
  --white: #ffffff;
  --off-white: #f8f5ef;
  --text-light: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.518);
  --text-dark: #1a1208;
  --shadow-gold: 0 8px 40px rgba(201, 152, 58, 0.25);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --t: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--black2);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  padding: 0 30px;
}
.section {
  padding: 100px 0;
}

/* TYPOGRAPHY */
.eyebrow {
  font-size: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}
.eyebrow.center {
  text-align: center;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-title.center {
  text-align: center;
  color: #373535;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.section-sub.center {
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--gold-border);
  padding: 9px 0;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-left {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar-left a,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-light);
  transition: var(--t);
}
.topbar-left a:hover {
  color: var(--gold);
}
.topbar-left a svg,
.topbar-right svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
}

/* ===== NAVBAR ===== */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0e1d36;
  padding: 4px 0;
  transition: var(--t);
}
#navbar.scrolled {
  background: #0e1d36;
  backdrop-filter: blur(16px);
  padding: 5px 0;
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  /* background: linear-gradient(135deg, var(--gold), var(--gold2)); */
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  background: #0f0f0f;

  /* Gold glow effect */
  box-shadow:
    0 4px 16px rgba(201, 152, 58, 0.4),
    0 0 25px rgba(201, 152, 58, 0.35),
    0 0 50px rgba(201, 152, 58, 0.25);

  transition: all 0.3s ease;
}
.logo-mark:hover {
  box-shadow:
    0 6px 20px rgba(201, 152, 58, 0.6),
    0 0 35px rgba(201, 152, 58, 0.5),
    0 0 70px rgba(201, 152, 58, 0.35);
}
.logo-mark.sm {
  width: 40px;
  height: 40px;
  font-size: 0.95rem;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.hero-slide {
  background-size: cover;
  background-position: center top;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 40px;
  padding: 0 14px;
  line-height: 40px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-links li a span {
  display: block;
  transition: transform 0.3s ease;
}

/* second text */
.nav-links li a .bottom {
  position: absolute;
  left: 14px;
  top: 100%;
}

/* hover animation */
.nav-links li a:hover .top {
  transform: translateY(-100%);
}

.nav-links li a:hover .bottom {
  transform: translateY(-100%);
}
.nav-quote {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-quote:hover {
  background: var(--gold2) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh; /* svh = mobile browser bar ke baad ka actual height */
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1); /* FIX: never scale(0) */
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes zoomSlow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.03);
  }
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 152, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 152, 58, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  max-width: 950px;
  color: #fff;
  position: relative; /*image ke uper text fixed karne ke liye*/
  z-index: 3;
  padding: 30px 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #fdb913;
  padding: 5px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-title {
  margin: 0;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-title .line1,
.hero-title .line2 {
  font-size: clamp(3rem, 8vw, 4rem);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.hero-title .line1 {
  display: block;
  font-size: 68px;
  color: #ffffff;
}
.hero-title .line2 {
  color: #fdb913;
}
.hero-title .line3 {
  display: block;
  font-size: 50px;
  color: #fdb913;
  margin-top: 8px;
  text-shadow: 0 4px 20px rgba(253, 185, 19, 0.3);
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-desc {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
}
.hero-values {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  font-size: 15px;
  font-weight: 600;
  color: #e5e5e5;
}
.hero-values .dot {
  color: #fdb913;
  font-size: 12px;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-ctas a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  background: #fdb913;
  color: #111;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(253, 185, 19, 0.25);
}
.cta-primary:hover {
  transform: translateY(-3px);
  background: #ffca2c;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-muted);
}
.hero-stats {
  position: relative; /* NOT absolute — stays in flow */
  z-index: 4;
  flex-shrink: 0; /* never compress */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: clamp(14px, 2.5vw, 22px) clamp(8px, 2vw, 20px);
  gap: 0;
  background: var(--black);
  border-top: 1px solid var(--gold-border);
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 70px;
  padding: 4px clamp(10px, 2vw, 26px);
  position: relative;
}
/* vertical divider between items */
.stat-item + .stat-item::before {
  display: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: "Playfair Display", serif;
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  margin-top: 5px;
  font-size: clamp(0.58rem, 1.2vw, 0.7rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.stat-divider {
  display: none;
}

/* ===== LEAD STRIP ===== */
.lead-strip {
  background: var(--white);
  padding: 36px 0;
}
.lead-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.lead-strip-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #373535;
  font-weight: 600;
}
.lead-strip-text p {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}
.lead-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}
.lead-form input,
.lead-form select {
  flex: 1;
  min-width: 160px;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--black);
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  outline: none;
}
.lead-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.lead-form input:focus,
.lead-form select:focus {
  background: rgba(0, 0, 0, 0.3);
}
.lead-form button {
  background: var(--black);
  color: var(--gold);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t);
}
.lead-form button:hover {
  background: var(--black2);
}

/* ===== ABOUT ===== */

.aw {
  font-family: "Outfit", sans-serif;
  background: var(--black);
  width: 100%;
  max-width: 100%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

/* ── body grid ── */
.body-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

/* ── left column ── */
.left-col {
  position: relative;
  overflow: hidden;
}
.left-col img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.1) contrast(1.15);
}
.left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 25, 35, 0.95) 0%,
    rgba(15, 25, 35, 0.2) 100%
  );
}
.left-content {
  position: absolute;
  inset: 0;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}
/* .big-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5.5rem;
      font-weight: 700;
      color: rgba(186,117,23,.15);
      line-height: 1;
      position: absolute;
      top: 1.5rem; left: 1.5rem;
      letter-spacing: -.02em;
    } */
.left-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.left-title m {
  color: var(--gold);
  font-family: "Outfit", sans-serif;
}
.left-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-weight: 300;
  max-width: 280px;
}
.left-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ltag {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold2);
  border: 0.5px solid rgba(186, 117, 23, 0.4);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* small inset image */
.img2-wrap {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  width: 110px;
  height: 90px;
  border-radius: 10px;
  filter: brightness(0.88);
  overflow: hidden;
  border: 2px solid rgba(186, 117, 23, 0.4);
}
.img2-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── right column ── */
.right-col {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--black);
}
.ey {
  font-size: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}
.rh {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.rdesc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
}

/* pillars list */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  transition: background 0.18s;
}
.pillar:last-child {
  border-bottom: none;
}
.pillar:hover {
  background: rgba(186, 117, 23, 0.07);
}
.pnum {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(186, 118, 23, 0.667);
  width: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.pline {
  width: 1px;
  height: 32px;
  background: rgba(186, 117, 23, 0.2);
  flex-shrink: 0;
}
.ptext {
  flex: 1;
}
.pt {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}
.pd {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  font-weight: 300;
}
.pcheck {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

/* bottom row */
.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}
.quote-block {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex: 1;
}
.q-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.8;
  flex-shrink: 0;
}
.q-text {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  font-style: italic;
  font-weight: 300;
}
.abtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  color: var(--gold-dark);
  padding: 10px 20px;
  border-radius: 40px;
  border: 0.5px solid #ba7517;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.abtn:hover {
  background: #ba7517;
  color: #fff;
}

/* ===== SERVICES ===== */
.services {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
}
.services.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  font-size: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #373535;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 13.5px;
  color: #666;
  text-align: center;
  max-width: 420px;
  margin: 0 auto 2.8rem;
  line-height: 1.65;
  font-weight: 300;
}

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

/* Card */
.service-card {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #e0d8cc;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.service-card:hover {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Image wrapper */
.img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #1a1208;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition:
    opacity 0.3s,
    transform 0.4s;
}

.service-card:hover .img-wrap img {
  opacity: 1;
  transform: scale(1.05);
}

.num-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

.feat-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #412402;
  background: #ef9f27;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Card body */
.body {
  padding: 1.1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.icon-row {
  font-size: 20px;
  color: #b8860b;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1208;
  line-height: 1.25;
}

.card-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 0.2rem;
}

.tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  border: 0.5px solid #ddd;
  color: #888;
}

.service-link {
  font-size: 12px;
  font-weight: 500;
  color: #b8860b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.3rem;
  align-self: flex-start;
  transition: color 0.15s;
}

.service-link:hover {
  color: #854f0b;
}

/* CTA card */
.cta-card {
  background: #111008 !important;
  border-color: #333 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.3rem;
  gap: 0.75rem;
  min-height: 260px;
}

.cta-card:hover {
  border-color: #555 !important;
}

.cta-icon {
  font-size: 28px;
  color: #ef9f27;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fac775;
  line-height: 1.2;
}

.cta-sub {
  font-size: 12px;
  color: rgba(250, 199, 117, 0.55);
  line-height: 1.55;
  font-weight: 300;
}

.divider {
  border: none;
  border-top: 0.5px solid rgba(250, 199, 117, 0.15);
  width: 80%;
}

.btn-gold {
  display: inline-block;
  background: #b8860b;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.15s;
}

.btn-gold:hover {
  background: #854f0b;
}

.btn-wa {
  font-size: 12px;
  color: rgba(250, 199, 117, 0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}

.btn-wa:hover {
  color: #fac775;
}

/* ===== PROCESS ===== */
.process {
  background: var(--black);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.step-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  border: 1px solid gray;
  box-shadow:
    0 4px 16px rgba(201, 152, 58, 0.4),
    0 0 25px rgba(201, 152, 58, 0.35),
    0 0 50px rgba(201, 152, 58, 0.25);
  z-index: 1;
}
.step-line {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201, 152, 58, 0.2));
}
.process-step.last .step-line {
  display: none;
}
.step-body {
  text-align: center;
  padding: 20px 16px 0;
}
.step-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROJECTS ===== */

.gallery-section {
  width: 100%;
  padding: 80px 30px;
  background-color: #fff;
}
.proj-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  color: #111;
}

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

/* 
      IMAGE CARD
      */

.gallery-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 7px;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
/* 
      .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.7),
          transparent 60%
        );
        opacity: 0;
        transition: 0.4s;
      } */

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* Button */

.view-btn {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #fff;
  color: #111;
  border: none;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.gallery-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* 
      FULL GALLERY MODAL
      */

.gallery-modal {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;

  overflow-y: auto;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Header */

.modal-header {
  position: sticky;
  top: 0px;
  background: #0e1d36;
  padding: 18px 25px;
  border-bottom: 1px solid rgb(221, 221, 221);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.close-modal {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Modal Grid */

.modal-gallery {
  padding: 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.modal-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.4s;
}

.modal-gallery img:hover {
  transform: scale(1.02);
}

/* 
      IMAGE PREVIEW
      */

.preview-box {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.preview-box.active {
  opacity: 1;
  visibility: visible;
}

.preview-box img {
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  object-fit: contain;
}

.close-preview {
  position: absolute;
  top: 25px;
  right: 30px;

  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;

  background: #fff;
  color: #111;

  font-size: 25px;
  cursor: pointer;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(184, 146, 42, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(184, 146, 42, 0.05),
      transparent 30%
    );
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */

.why-content .eyebrow {
  font-size: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #b8922a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-content .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #b8922a;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  /* color: #f5f0e8; */
}

.about-body {
  max-width: 470px;
  color: #6e6e63;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 34px;
  text-align: center;
}

/* FEATURES */

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid rgba(184, 146, 42, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0px 12px 40px rgba(145, 160, 15, 0.45),
    0px 1px 3px rgba(220, 202, 12, 0.918);
}

.why-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 18px;
  background: #0d0d0b;
  transition: 0.3s ease;
}

.why-feat:hover {
  background: #151512;
}

.feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon.gold {
  background: rgba(184, 146, 42, 0.08);
  border: 1px solid rgba(184, 146, 42, 0.22);
}

.feat-icon svg {
  width: 17px;
  height: 17px;
  stroke: #b8922a;
  stroke-width: 1.7;
  fill: none;
}

.why-feat h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ece5d8;
  margin-bottom: 6px;
  line-height: 1.35;
}

.why-feat p {
  font-size: 0.72rem;
  color: #66665d;
  line-height: 1.65;
}

/* RIGHT SIDE */

.why-visual {
  position: relative;
  padding-top: 20px;
}

/* IMAGE */

.why-img {
  height: 520px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 42, 0.18);
  position: relative;
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-position: right;
  /* filter: brightness(0.98) saturate(0.88); */
  transition: 0.4s ease;
}

.why-img:hover img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

.why-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 8, 0.72) 0%,
    transparent 50%
  );
}

/* FLOAT CARD */

.why-card-float {
  position: absolute;
  bottom: -28px;
  left: -24px;

  padding: 20px 24px;
  max-width: 290px;

  border-radius: 16px;
  overflow: hidden;

  background: rgba(13, 13, 11, 0.95);
  backdrop-filter: blur(10px);

  z-index: 3;
  isolation: isolate;
}

/* ROTATING GOLD GLOW */

.why-card-float::before {
  content: "";
  position: absolute;
  inset: -150%;

  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 215, 0, 0.95) 40deg,
    rgba(255, 187, 0, 0.65) 80deg,
    transparent 120deg,
    transparent 360deg
  );

  animation: rotateCardGlow 6s linear infinite;

  z-index: -2;
}

/* INNER CARD LAYER */

.why-card-float::after {
  content: "";
  position: absolute;
  inset: 1.5px;

  background: rgba(13, 13, 11, 0.96);
  border-radius: 14px;

  z-index: -1;
}

/* OPTIONAL EXTRA SHADOW */

.why-card-float {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(184, 146, 42, 0.18);
}

/* ROTATION */

@keyframes rotateCardGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.why-card-float:hover {
  box-shadow:
    0px 12px 40px rgba(145, 160, 15, 0.45),
    0px 1px 3px rgba(220, 202, 12, 0.918);
}

.wcf-top {
  display: flex;
  gap: 28px;
  margin-bottom: 14px;
}

.wcf-item {
  text-align: center;
}

.wcf-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #c9993a;
  line-height: 1;
}

.wcf-label {
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 5px;
}

.wcf-quote {
  font-size: 0.78rem;
  font-style: italic;
  color: #7b7b72;
  line-height: 1.6;
  border-top: 1px solid rgba(184, 146, 42, 0.15);
  padding-top: 12px;
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  padding: 100px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.testi-slider-wrap {
  overflow: hidden;
  position: relative;
}

.testi-slider {
  display: flex;
  gap: 24px;
  width: max-content;

  animation: scrollTesti 18s linear infinite;
}

@keyframes scrollTesti {
  0% {
    transform: translateX(0);
  }

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

/* CARD */
.testi-card {
  width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  flex-shrink: 0;

  border: 1px solid #ececec;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

/* TOP */
.testi-top {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 24px;
}

.testi-top img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-user h3 {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111;
}

.verify {
  color: #1d9bf0;
  font-size: 0.9rem;
}

.testi-user p {
  font-size: 1rem;
  color: #667085;
}

/* CONTENT */
.testi-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 30px;
}
.testi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 1rem;
}
.testi-slider:hover {
  animation-play-state: paused;
}

/* ===== CONTACT ===== */

.contact {
  background: var(--black);
}

/* Ambient glow blobs */
/* .contact::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 560px; height: 560px;
      background: radial-gradient(circle, rgba(201,152,58,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .contact::after {
      content: '';
      position: absolute;
      bottom: -140px; left: -140px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(201,152,58,0.04) 0%, transparent 70%);
      pointer-events: none;
    } */

.container {
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  padding-top: 4px;
}

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

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  line-height: 1.17;
  /* color: var(--white); */
  margin-bottom: 20px;
  font-weight: 700;
}
.section-title m {
  color: var(--gold);
  font-weight: 600;
}

.about-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
  font-weight: 300;
  max-width: 340px;
  margin-bottom: 36px;
}

/* ── Contact Cards ── */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--black3);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.contact-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: var(--t);
}
.contact-detail-card:hover {
  border-color: var(--gold-border);
  background: var(--gold-muted);
  transform: translateX(5px);
}
.contact-detail-card:hover::before {
  transform: scaleY(1);
}

.cd-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201, 152, 58, 0.24);
}
.cd-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cd-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-detail-card strong {
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.45;
  display: block;
}

/* ── Social Row ── */
.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-social > span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-right: 4px;
}
.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--black3);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: var(--t);
}
.contact-social a:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.contact-social a svg {
  width: 16px;
  height: 16px;
}

/* RIGHT COLUMN – FORM */

.contact-form-wrap {
  background: var(--black3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 42px 38px;
  position: relative;
  overflow: hidden;
  margin: 20px 0;

  /* Animated Multi Color Shadow */
  animation: glowingShadow 4s linear infinite;
}

/* Glow Circle */
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;

  background: radial-gradient(
    circle,
    rgba(201, 152, 58, 0.12) 0%,
    transparent 70%
  );

  pointer-events: none;
}

/* Shadow Animation */
@keyframes glowingShadow {
  0% {
    box-shadow:
      0 0 10px rgba(255, 0, 102, 0.4),
      0 0 25px rgba(255, 0, 102, 0.25),
      0 0 40px rgba(255, 0, 102, 0.18);
  }

  25% {
    box-shadow:
      0 0 10px rgba(0, 183, 255, 0.4),
      0 0 25px rgba(0, 183, 255, 0.25),
      0 0 40px rgba(0, 183, 255, 0.18);
  }

  50% {
    box-shadow:
      0 0 10px rgba(0, 255, 153, 0.4),
      0 0 25px rgba(0, 255, 153, 0.25),
      0 0 40px rgba(0, 255, 153, 0.18);
  }

  75% {
    box-shadow:
      0 0 10px rgba(255, 196, 0, 0.4),
      0 0 25px rgba(255, 196, 0, 0.25),
      0 0 40px rgba(255, 196, 0, 0.18);
  }

  100% {
    box-shadow:
      0 0 10px rgba(255, 0, 102, 0.4),
      0 0 25px rgba(255, 0, 102, 0.25),
      0 0 40px rgba(255, 0, 102, 0.18);
  }
}

/* Form header */
.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 152, 58, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 5px;
}
.form-badge::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(74, 222, 128, 0.65);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 7px rgba(74, 222, 128, 0.65);
  }
  50% {
    box-shadow: 0 0 14px rgba(74, 222, 128, 0.9);
  }
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(11, 11, 11, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 12px 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  resize: vertical;
  transition: var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  color: var(--text-muted);
  cursor: pointer;
}
.form-group select.has-value {
  color: var(--white);
}
.form-group select option {
  background: #181818;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 152, 58, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 152, 58, 0.1);
}

.form-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 152, 58, 0.22),
    transparent
  );
  margin: 6px 0 20px;
}

/* Submit button */
.btn-submit {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--gold-dark) 0%,
    var(--gold) 50%,
    var(--gold2) 100%
  );
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 100%
  );
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit svg {
  width: 17px;
  height: 17px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}
.btn-submit span {
  position: relative;
  z-index: 1;
}

/* Trust bar */
.contact-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.trust-dot {
  width: 3px;
  height: 3px;
  background: var(--gold-border);
  border-radius: 50%;
}

/* ── Success State ── */
.contact-form {
  transition: var(--t);
}
.contact-form.hidden {
  display: none;
}

.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 18px;
}
.contact-success.show {
  display: flex;
}

.success-icon {
  width: 68px;
  height: 68px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #4ade80;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--white);
  font-weight: 700;
}
.contact-success p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

/* ===== MAP ===== */
.map-section {
  line-height: 0;
  border-top: 3px solid var(--gold);
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
}
.footer-top {
  border-bottom: 1px solid var(--gold-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-values {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.footer h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-items a,
.footer-contact-items p {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: var(--t);
}
.footer-contact-items a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== FAB BUTTONS ===== */
.fab-container {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.fab-btn svg {
  width: 22px;
  height: 22px;
}
.chatbot-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
}
.chatbot-btn svg {
  stroke: var(--black);
  fill: none;
}
.wa-btn {
  background: #25d366;
  color: var(--white);
}
.call-btn {
  background: var(--black3);
  border: 2px solid var(--gold);
  color: var(--gold);
}
.call-btn svg {
  stroke: var(--gold);
  fill: none;
}
.fab-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* ===== CHATBOT ===== */
.chatbot-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 340px;
  background: var(--black3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 152, 58, 0.1);
  z-index: 1000;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}
.chatbot-popup.open {
  display: flex;
  flex-direction: column;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.chatbot-header strong {
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 700;
  display: block;
}
.chatbot-header span {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.6);
}
.chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--t);
}
.chatbot-close:hover {
  background: rgba(0, 0, 0, 0.15);
  color: var(--black);
}
.chatbot-messages {
  padding: 16px;
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg {
  display: flex;
}
.msg.bot {
  justify-content: flex-start;
}
.msg.user {
  justify-content: flex-end;
}
.msg-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.msg.bot .msg-bubble {
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border-radius: 12px 12px 12px 4px;
}
.msg.user .msg-bubble {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 500;
  border-radius: 12px 12px 4px 12px;
}
.chatbot-options {
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chatbot-options button {
  background: var(--black2);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 9px 14px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--t);
}
.chatbot-options button:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
}
.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.chatbot-input-row input {
  flex: 1;
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  color: var(--white);
  outline: none;
}
.chatbot-input-row input:focus {
  border-color: var(--gold);
}
.chatbot-input-row input::placeholder {
  color: var(--text-muted);
}
.chatbot-input-row button {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--t);
}
.chatbot-input-row button:hover {
  background: var(--gold2);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .hero-content {
    max-width: 980px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .step-line {
    display: none;
  }
}

@media (max-width: 992px) {
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-visual {
    order: -1;
  }

  .why-img {
    height: 430px;
  }

  .why-card-float {
    left: 20px;
    bottom: 20px;
  }
  .gallery-grid,
  .modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-visuals,
  .why-visual {
    min-height: 350px;
  }
  .about-img-main,
  .why-img {
    height: 360px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card.large {
    grid-column: 1 / 3;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .about-body {
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  #navbar {
    background: rgba(10, 10, 10, 0.97) !important;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.99);
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid var(--gold-border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: block;
  }
  .topbar {
    display: none;
  }
  .hero-stats {
    position: relative; /* absolute remove */
    bottom: unset;
    margin-top: 40px;
    /* flex-direction: column; */
    padding: 30px 20px;
  }
  .stat-item {
    padding: 0;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.72rem;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: 1;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-img {
    height: 340px;
  }

  .why-card-float {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -35px;
    max-width: 100%;
  }

  .testi-card {
    width: 300px;
    padding: 18px;
  }

  .testi-content {
    font-size: 1rem;
  }

  .testi-user h3 {
    font-size: 1.1rem;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .lead-strip-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 24px 18px;
  }
  .chatbot-popup {
    right: 12px;
    left: 12px;
    width: auto;
  }
  .fab-container {
    right: 16px;
    bottom: 20px;
  }

  .hero-bg {
    height: 100%;
  }

  .hero-slide {
    background-position: center !important;
  }

  .hero-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 10px 20px 40px;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 7px 16px;
  }

  .hero-title .line1,
  .hero-title .line2 {
    font-size: 2.7rem;
  }

  .hero-title .line3 {
    font-size: 1.1rem;
    margin-top: 6px;
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-values {
    gap: 8px;

    font-size: 0.68rem;

    margin-bottom: 1.8rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 40%;
    display: flex;
    padding: 10px 15px;
  }

  .stat-item {
    padding: 0;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }
}

@media (max-width: 680px) {
  .body-wrap {
    grid-template-columns: 1fr;
  }
  .left-col {
    min-height: 280px;
  }
  .top-strip {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .ts-right {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .contact {
    padding: 70px 0 60px;
  }
  .container {
    padding: 0 20px;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 22px;
  }
  .form-header {
    flex-direction: column;
    gap: 12px;
  }
  .contact-trust {
    gap: 12px;
  }
  .trust-dot {
    display: none;
  }
  .why-us {
    padding: 70px 0;
  }
  .why-grid {
    gap: 36px;
  }
  .why-feat {
    padding: 16px;
  }
  .why-img {
    height: 280px;
  }
  .wcf-top {
    justify-content: space-between;
    gap: 14px;
  }
  .wcf-num {
    font-size: 1.4rem;
  }
  .wcf-label {
    font-size: 0.56rem;
  }
  .wcf-quote {
    font-size: 0.74rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 0;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    width: 70%;
    text-align: center;
  }
  .hero {
    height: auto;
    min-height: 100vh;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    align-items: center;
    padding: 22px 20px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gold-border);
    margin: 0;
  }

  .hero-title .line1,
  .hero-title .line2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-title .line3 {
    font-size: 0.95rem;
  }

  .hero-desc {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .hero-values {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* desktop */
    gap: 20px;

    text-align: center;
    align-items: center;

    padding: 22px 20px;

    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(20px);

    border-top: 1px solid var(--gold-border);
  }

  .stat-divider {
    display: none;
  }

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

@media (max-width: 320px) {
  .hero-content {
    padding: 90px 12px 30px;
  }

  .hero-badge {
    font-size: 0.55rem;

    padding: 6px 12px;

    letter-spacing: 0.1em;
  }

  .hero-title .line1,
  .hero-title .line2 {
    font-size: 1.8rem;
  }

  .hero-title .line3 {
    font-size: 0.85rem;
  }

  .hero-desc {
    font-size: 0.78rem;

    line-height: 1.6;
  }

  .hero-values {
    font-size: 0.55rem;

    gap: 5px;
  }

  .cta-primary,
  .cta-secondary {
    font-size: 0.68rem;

    padding: 12px 14px;
  }

  .hero-stats {
    padding: 20px 10px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .stat-num {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4px;
  }
}
