/* ============================================================
   STALL CRAFT — Landing Page Redesign
   Theme: Architectural / blueprint-inspired, navy + gold
   ============================================================ */

:root {
  --ink: #0A1524;
  --navy: #122b4d;
  --navy-2: #16345c;
  --gold: #C8983E;
  --gold-light: #E8C879;
  --paper: #F7F5F0;
  --paper-2: #EFEBE1;
  --slate: #4C5568;
  --slate-2: #7A8398;
  --white: #FFFFFF;
  --line: rgba(200, 152, 62, .35);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 24px 60px -20px rgba(10, 21, 36, .35);
  --shadow-md: 0 12px 30px -12px rgba(10, 21, 36, .25);
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.15;
  color: var(--ink);
}

p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(.97);
}

.btn-gold {
  background: #e96f05d8;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(200, 152, 62, .55);
}

.btn-gold:hover {
  box-shadow: 0 14px 32px -8px rgba(200, 152, 62, .7);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.btn-block {
  width: 100%;
}

/* ---------- Section label / heads ---------- */
.section-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-label.center {
  justify-content: center;
  width: 100%;
}

.section-label.light {
  color: var(--gold-light);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.02rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  font-size: .82rem;
  padding: 9px 16px;
}

.topbar a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(200, 152, 62, .18);
  transition: padding .25s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 100px;
}

.logo-text {
  font-family: var(--font-head);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-text em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: #000;
  font-weight: 600;
  font-size: .93rem;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
}

.header-call svg {
  color: var(--gold-light);
}

.header-call:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 21, 36, .75) 0%, rgba(10, 21, 36, .55) 45%, rgba(10, 21, 36, .95) 100%);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 90px;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  margin-bottom: 22px;
  border: 1px solid rgba(232, 200, 121, .35);
  padding: 8px 16px;
  border-radius: 999px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(232, 200, 121, .2);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  max-width: 760px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-sub {
  color: #c9d1e0;
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 36px;
  letter-spacing: .02em;
}

.hero-quick-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 12px;
  border-radius: 16px;
  max-width: 640px;
  backdrop-filter: blur(6px);
}

.hero-quick-form input {
  flex: 1 1 160px;
  min-width: 140px;
  background: rgba(255, 255, 255, .94);
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--ink);
}

.hero-quick-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.hero-quick-form .btn {
  flex: 1 1 100%;
}

@media(min-width:640px) {
  .hero-quick-form .btn {
    flex: 0 0 auto;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-item strong {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 1.3rem;
}

.trust-item span {
  color: #aeb7c8;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .18);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 20px;
  z-index: 2;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 3px;
  animation: scrollcue 1.8s infinite;
}

@keyframes scrollcue {
  0% {
    opacity: 1;
    top: 8px;
  }

  70% {
    opacity: 0;
    top: 22px;
  }

  100% {
    opacity: 0;
    top: 8px;
  }
}

/* ============================================================
   BRANDS MARQUEE
   ============================================================ */
.brands {
  padding: 56px 0 60px;
  background: var(--paper);
}

.marquee {
  overflow: hidden;
  position: relative;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

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

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

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

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

.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 64px;
  background: #fff;
  border: 1px solid var(--paper-2);
  border-radius: 12px;
  padding: 0 22px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: var(--shadow-md);
}

.brand-chip img {
  max-height: 34px;
  width: auto;
  filter: grayscale(1);
  opacity: .75;
  transition: opacity .2s, filter .2s;
}

.brand-chip:hover img {
  filter: none;
  opacity: 1;
}

/* ============================================================
   BLUEPRINT CORNERS (signature decorative element)
   ============================================================ */
.blueprint-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}

.blueprint-corner.tl {
  top: 0;
  left: 0;
  border-top: 2px dashed var(--line);
  border-left: 2px dashed var(--line);
}

.blueprint-corner.tr {
  top: 0;
  right: 0;
  border-top: 2px dashed var(--line);
  border-right: 2px dashed var(--line);
}

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

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

.why-card {
  background: var(--paper);
  border: 1px solid var(--paper-2);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e96f05d8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .92rem;
}

.why-card-cta {
  background: linear-gradient(180deg,#f07509 0%,#e7c73b 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.why-card-cta h3 {
  color: #fff;
  font-size: 1.15rem;
}

.why-card-cta p {
  color: #fff;
}

.why-card-cta .btn {
  align-self: flex-start;
  margin-top: 6px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 50px 0;
  background: var(--paper);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--paper-2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-media {
  position: relative;
  height: 150px;
  background: linear-gradient(135deg, var(--navy), var(--ink));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 16px 16px;
}

.service-media svg {
  width: 56px;
  height: 56px;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}

.service-media::after {
  content: attr(data-tag);
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: #e96f05d8;
  padding: 4px 10px;
  border-radius: 999px;
}

.service-body {
    padding: 26px 20px 26px;
}

@media (max-width: 768px) {
    .service-body {
        padding: 40px 20px 35px;
    }
}

.service-body h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.service-body p {
  font-size: .9rem;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 50px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background-image: linear-gradient(90deg, #e96f05d8 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 20px 0 0;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  border: 3px solid var(--paper);
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .9rem;
}

.process-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
  padding: 50px 0;
  background: var(--paper);
}

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

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 10/5;
  background: linear-gradient(155deg, var(--navy-2), var(--ink));
  box-shadow: var(--shadow-md);
  cursor: default;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 20px 20px;
}

.project-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
}

.project-info h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.project-info span {
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
}

.project-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.project-mark svg {
  width: 64px;
  height: 64px;
  color: rgba(232, 200, 121, .28);
}

.project-card:hover .project-mark svg {
  color: rgba(232, 200, 121, .5);
  transition: color .3s;
}

/* ============================================================
   PROOF / TESTIMONIAL VIDEO
   ============================================================ */
.proof {
  position: relative;
  padding: 250px 0;
  overflow: hidden;
  background: var(--ink);
}

.proof-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 21, 36, .96) 10%, rgba(10, 21, 36, .6) 70%);
}

.proof-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.badge-pill {
  display: inline-block;
  background: var(--gold-light);
  color: var(--ink);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.proof-content h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.proof-content p {
  color: #c3cbdb;
  margin-bottom: 30px;
  font-size: 1.02rem;
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-section {
  position: relative;
  background: linear-gradient(155deg, var(--navy), var(--ink));
  padding: 100px 0;
  overflow: hidden;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-copy h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin: 0 0 22px;
}

.lead-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.lead-points li {
  color: #dfe4ee;
  font-size: .96rem;
  padding-left: 28px;
  position: relative;
}

.lead-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.lead-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lead-contact a {
  color: var(--gold-light);
  font-weight: 700;
  font-size: .98rem;
}

.lead-contact a:hover {
  color: #fff;
}

.lead-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.lead-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.form-row {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--slate);
}

.form-row input,
.form-row textarea {
  border: 1.5px solid var(--paper-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--ink);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

.form-note {
  font-size: .74rem;
  color: var(--slate-2);
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  padding: 10px 0 0;
  color: #c3cbdb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  color: #9aa4ba;
  font-size: .88rem;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  transition: background .2s, border-color .2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.footer-col h4 {
  color: #e96f05d8;
  font-size: .92rem;
  margin-top: 26px;
  letter-spacing: .03em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #9aa4ba;
  font-size: .88rem;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  margin-top: 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-inner p {
  color: #8089a0;
  font-size: .8rem;
}

.footer-bottom-inner div {
  display: flex;
  gap: 20px;
}

.footer-bottom-inner a {
  color: #8089a0;
  font-size: .8rem;
}

.footer-bottom-inner a:hover {
  color: var(--gold-light);
}

/* ============================================================
   FLOATING CTAs
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, .6);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

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

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  background: #fff;
  box-shadow: 0 -8px 24px -8px rgba(10, 21, 36, .25);
}

.mobile-cta-btn {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  font-weight: 700;
  font-size: .92rem;
}

.mobile-cta-btn.call {
  background: var(--ink);
  color: #fff;
}

.mobile-cta-btn.wa {
  background: #25D366;
  color: #fff;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1080px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .process-track::before {
    display: none;
  }

  .lead-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media(max-width:860px) {
  .main-nav {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 20px 24px;
    transform: translateY(-120%);
    transition: transform .3s ease;
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-gold {
    display: none;
  }

  .mobile-cta {
    display: flex;
  }

  .whatsapp-float {
    bottom: 74px;
  }

  body {
    padding-bottom: 58px;
  }
}

@media(max-width:640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .process-track {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .topbar p {
    font-size: .74rem;
  }
}


/* client logo */

.client-logos {
    padding: 20px 0;
    overflow: hidden;
}

.logo-slider {
    overflow: hidden;
    margin: 20px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 40px;
}

.logo-track img {
    width: 150px;
    height: 80px;
    object-fit: cover;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    flex-shrink: 0;
}

.logo-track.left {
    animation: scrollLeft 30s linear infinite;
}

.logo-track.right {
    animation: scrollRight 30s linear infinite;
}

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

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}


.premium-video{
    padding: 50px 0;
    background:#fff;
}

.premium-grid{
    display:grid;
    grid-template-columns:55% 45%;
    gap:80px;
    align-items:center;
}

/* VIDEO */

.premium-video-box{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 35px 70px rgba(0,0,0,.12);
}

.premium-video-box video{
    width:100%;
    display:block;
    transition:.5s;
}

.premium-video-box:hover video{
    transform:scale(1.05);
}

.video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.35),transparent);
}

.play-btn{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    transition:.3s;
}

.play-btn:hover{
    background:#ff6a00;
}

/* CONTENT */

.eyebrow{
    display:inline-block;
    color:#ff6a00;
    font-size:13px;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:20px;
}

.premium-content h2{
    font-size:32px;
    line-height:1.15;
    color:#0A1524;
    margin-bottom:24px;
}

.premium-content p{
    color:#666;
    font-size:18px;
    line-height:1.8;
    max-width:500px;
}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin:45px 0;
}

.stats h3{
    margin:0;
    font-size:42px;
    color:#e96f05d8;
}

.stats span{
    color:#777;
    display:block;
    margin-top:6px;
}


/* MOBILE */

@media(max-width:991px){

.premium-grid{
grid-template-columns:1fr;
gap:50px;
}

.premium-content h2{
font-size:38px;
}

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

}

@media(max-width:600px){

.premium-video{
padding:70px 0;
}

.premium-content h2{
font-size:30px;
}

.stats{
grid-template-columns:1fr 1fr;
gap:20px;
}

.play-btn{
width:60px;
height:60px;
font-size:20px;
}

}




/* proejcts */



/* projects */

.project-card{
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.project-image{
    height:280px;
    overflow:hidden;
    border-bottom:1px solid #ededed;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

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

.project-content{
    padding:24px;
}

.project-content h3{
    margin-bottom:14px;
}

.project-location{
    color:#666;
    margin-bottom:8px;
}

.project-size{
    color:#ff6a00;
    font-weight:600;
}

.project-link{
    margin-top:22px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#111;
    text-decoration:none;
    font-weight:600;
}

.project-card:hover .project-link{
    color:#ff6a00;
}


/* form  */

.lead-contact-section{
    padding: 50px 0;
    background:#E8C879;
}

.lead-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}

/* VIDEO */

.lead-video{
    position:relative;
    min-height:700px;
}

.lead-video video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.video-content{
    position:absolute;
    left:50px;
    bottom:50px;
    color:#fff;
    max-width:420px;
}

.video-content span{
    display:inline-block;
    padding:8px 18px;
    background:#ff6a00;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

.video-content h2{
    font-size:48px;
    line-height:1.15;
    margin-bottom:20px;
}

.video-content p{
    line-height:1.8;
    opacity:.9;
}

/* FORM */

.lead-form-box{
    padding: 20px;
    display:flex;
    flex-direction:column;
    background: #e96f05d8;
}

.form-tag{
    color:#ff6a00;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
}

.lead-form-box h3{
    font-size:32px;
    margin: 5px 0;
    color:#fff;
}

.lead-form-box p{
    color:#fff;
    margin-bottom:35px;
}

.form-group{
    margin-bottom:18px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px 20px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    outline:none;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#ff6a00;
}

button{
    width:100%;
    border:none;
    background:#fff;
    color:#e96f05d8;
    padding:18px;
    border-radius:14px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
    font-weight: bold;
}

button:hover{
    background:#ff6a00;
}

@media(max-width:991px){

.lead-wrapper{
grid-template-columns:1fr;
}

.lead-video{
height:420px;
min-height:auto;
}

.lead-form-box{
padding:40px 30px;
}

.video-content{
left:30px;
bottom:30px;
}

.video-content h2{
font-size:34px;
}

}

/* footer respossive */
/* =========================
   FOOTER
========================= */

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr repeat(4,1fr);
    gap:40px;
}

.footer-brand img{
    max-width:180px;
    width:100%;
}

.footer-col h4{
    margin-bottom:18px;
}

.footer-col a{
    display:block;
    margin-bottom:10px;
    text-decoration:none;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding:20px 0;
}

.footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom-inner div{
    display:flex;
    gap:20px;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    color:#fff;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* =========================
   MOBILE CTA
========================= */

.mobile-cta{
    display:none;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

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

.footer-bottom-inner{
    flex-direction:column;
    text-align:center;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    gap:35px;
}

.footer-brand{
    text-align:left;
}

.footer-col{
    text-align:left;
}

.footer-bottom-inner div{
    flex-wrap:wrap;
    justify-content:left;
}

.whatsapp-float{
    bottom:85px;
    right:20px;
    width:55px;
    height:55px;
}

.mobile-cta{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    z-index:9999;
}

.mobile-cta-btn{
    text-align:center;
    padding:16px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
}

.mobile-cta-btn.call{
    background:#111;
}

.mobile-cta-btn.wa{
    background:#25D366;
}

body{
    padding-bottom:65px;
}

}

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

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    background:#ff6a00;
}

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