:root {
  --orange: #f97316;
  --dark: #262624;
  --dark2: #1c1c1a;
  --dark3: #313130;
  --light: #f5f0eb;
  --muted: #9e9b95;
  --font-display: "Syne", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
}
/* ── CUSTOM SCROLLBAR (desktop) ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--dark3);
  border-radius: 4px;
  border: 2px solid var(--dark2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--dark3) var(--dark2);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw;
  background: rgba(38, 38, 36, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.12);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--light);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}
.nav-cta {
  background: var(--orange);
  color: var(--dark);
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
}

/* HERO — compact so marquee is visible in first viewport */
#home {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 6vw 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 50%,
      rgba(249, 115, 22, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(249, 115, 22, 0.06) 0%,
      transparent 60%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 100%
  );
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  animation: fadeUp 0.8s 0.2s both;
}
h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(0.92rem, 1.5vw, 1.12rem);
  color: var(--muted);
  max-width: 500px;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  animation: fadeUp 0.8s 0.5s both;
}
.btn-primary {
  background: var(--orange);
  color: var(--dark);
  padding: 0.82rem 2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35);
}
.btn-ghost {
  color: var(--light);
  font-size: 0.93rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.btn-ghost:hover {
  opacity: 1;
}
.btn-ghost svg {
  transition: transform 0.2s;
}
.btn-ghost:hover svg {
  transform: translateX(4px);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s 0.65s both;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 0.22rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(249, 115, 22, 0.15);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  background: rgba(249, 115, 22, 0.05);
  padding: 0.82rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2.3rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
section {
  padding: 7rem 6vw;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
h2 em {
  font-style: normal;
  color: var(--orange);
}

/* WHY ASAR */
#whyASAR {
  background: var(--dark2);
}
.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.why-sub {
  max-width: 380px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.why-card {
  background: var(--dark3);
  padding: 2.6rem 2.3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.why-card:hover {
  background: #3a3a38;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.why-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.91rem;
}

/* SERVICES */
#services {
  background: var(--dark);
}
.services-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.services-desc {
  max-width: 400px;
  color: var(--muted);
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--dark3);
  padding: 2.5rem 2.1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s,
    background 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  background: #353533;
  transform: translateY(-3px);
}
.service-card.featured {
  background: var(--orange);
}
.service-card.featured:hover {
  background: #fb8836;
}
.service-card.featured h3,
.service-card.featured p {
  color: var(--dark);
}
.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.service-card.featured .svc-icon {
  background: rgba(38, 38, 36, 0.12);
  color: var(--dark);
}
.svc-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.service-card.featured .svc-num {
  color: rgba(38, 38, 36, 0.4);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.88rem;
  flex: 1;
}
.service-card.featured p {
  color: rgba(38, 38, 36, 0.68);
}
.svc-cta {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card.featured .svc-cta {
  color: var(--dark);
}

/* PROJECTS */
#projects {
  background: var(--dark2);
}
.projects-header {
  margin-bottom: 3.5rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.project-card {
  background: var(--dark3);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s;
}
.project-card:hover {
  transform: translateY(-4px);
}
.project-img-wrap {
  overflow: hidden;
}
.project-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition:
    filter 0.35s,
    transform 0.35s;
}
.project-card:hover .project-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.project-body {
  padding: 1.8rem 2rem 2rem;
}
.project-tags {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.26rem 0.62rem;
  border-radius: 2px;
}
.tag-cat {
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
}
.tag-type {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.project-card p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--dark);
  overflow: hidden;
}
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.2rem;
}
.t-nav {
  display: flex;
  gap: 0.55rem;
}
.t-btn {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.t-btn:hover {
  background: var(--orange);
  color: var(--dark);
}
.t-track-wrap {
  overflow: hidden;
}
.t-track {
  display: flex;
  gap: 2px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  background: var(--dark3);
  border: 1px solid rgba(249, 115, 22, 0.08);
  padding: 2.6rem;
  position: relative;
  flex: 0 0 calc(50% - 1px);
  min-width: calc(50% - 1px);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
}
.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--light);
  font-style: italic;
  margin-bottom: 1.8rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
}
.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.78rem;
  color: var(--orange);
  margin-top: 0.12rem;
}
.t-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
.t-dot {
  width: 24px;
  height: 3px;
  background: rgba(249, 115, 22, 0.22);
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
}
.t-dot.active {
  background: var(--orange);
  width: 40px;
}

/* FAQ */
#faq {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Section label (matches site's "Why ASAR?", "Services" labels) ── */
.faq-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f97316;
  margin: 0 0 16px;
}

/* ── Heading — italic em matches site pattern ── */
.faq-heading {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.faq-heading em {
  font-style: italic;
  color: #f97316;
}

/* ── Subtitle ── */
.faq-subtitle {
  font-size: 15px;
  color: #9ca3af;
  margin: 0 0 48px;
  line-height: 1.6;
}

.faq-link {
  color: #f97316;
  text-decoration: none;
  transition: opacity 0.2s;
}

.faq-link:hover {
  opacity: 0.75;
}

/* ── Accordion list ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── Accordion item card ── */
.faq-item {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

.faq-item[open] {
  border-color: rgba(249, 115, 22, 0.5);
}

/* ── Summary row ── */
.faq-item summary {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
  -webkit-user-select: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

/* ── Orange +/− icon ── */
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 50%;
  transition:
    transform 0.25s,
    background 0.25s;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(249, 115, 22, 0.12);
  transform: rotate(0deg);
}

.faq-item[open] summary {
  color: #f97316;
}

/* ── Answer text ── */
.faq-item p {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.75;
  color: #9ca3af;
  margin: 0;
}

.faq-item p strong {
  color: #e5e7eb;
  font-weight: 600;
}

/* ── Divider between summary and answer ── */
.faq-item[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  #faq {
    padding: 72px 20px;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }
}

/* CONTACT */
#contact {
  background: var(--dark2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem;
  background: var(--dark3);
  border-left: 2px solid var(--orange);
}
.contact-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.contact-label {
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.22rem;
}
.contact-value {
  font-weight: 500;
  font-size: 0.93rem;
}
.contact-value a {
  color: var(--light);
  text-decoration: none;
}
.contact-value a:hover {
  color: var(--orange);
}
.response-note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.response-note strong {
  color: var(--orange);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
input,
select,
textarea {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--light);
  padding: 0.78rem 0.92rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
}
/* ── FORM VALIDATION ── */

/* Highlighted error field */
input.error,
textarea.error,
select.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.06);
  animation: shake 0.35s ease;
}
input.error:focus,
textarea.error:focus,
select.error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

/* Status box (success / error) */
#form-status {
  display: none;
  padding: 0.85rem 1.1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  border-left: 3px solid;
}
#form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border-color: #22c55e;
  color: #22c55e;
}
#form-status.error {
  background: rgba(239, 68, 68, 0.08);
  border-color: #ef4444;
  color: #ef4444;
}

/* Loading state on submit button */
.btn-submit.loading {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-submit.loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--dark);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 0.6rem;
  vertical-align: middle;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
select option {
  background: var(--dark3);
}
textarea {
  resize: vertical;
  min-height: 112px;
}
.btn-submit {
  background: var(--orange);
  color: var(--dark);
  border: none;
  cursor: pointer;
  padding: 0.92rem 2rem;
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 2px;
  margin-top: 0.35rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-transform: uppercase;
  width: 100%;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35);
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(249, 115, 22, 0.12);
  padding: 2.4rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
footer nav {
  position: relative;
  background: none;
  border: none;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
  text-decoration: none;
}
.footer-logo span {
  color: var(--light);
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-copy {
  color: var(--muted);
  font-size: 0.79rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .why-grid,
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 2rem;
  }
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.85rem;
  }
  section {
    padding: 5rem 5vw;
  }
  nav {
    padding: 1rem 5vw;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
}

/* ── MOBILE NAV DRAWER ── */
.hamburger {
  transition: opacity 0.2s;
}
.hamburger span {
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(28, 28, 26, 0);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition:
    background 0.35s,
    backdrop-filter 0.35s;
}
.mobile-drawer.open {
  background: rgba(28, 28, 26, 0.7);
  backdrop-filter: blur(6px);
  pointer-events: all;
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--dark2);
  border-left: 1px solid rgba(249, 115, 22, 0.15);
  padding: 5.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}
.mobile-drawer-panel a {
  display: block;
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-drawer-panel a:hover {
  color: var(--orange);
  padding-left: 1.6rem;
}
.mobile-drawer-panel .drawer-cta {
  margin-top: 1.5rem;
  background: var(--orange);
  color: var(--dark);
  border-radius: 2px;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
  padding: 1rem;
}
.mobile-drawer-panel .drawer-cta:hover {
  padding-left: 1.2rem;
  opacity: 0.9;
}

/* ── WHATSAPP WIDGET ── */
.wa-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.75),
      0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
}

.wa-popup {
  position: fixed;
  bottom: 6rem;
  right: 1.8rem;
  z-index: 200;
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(16px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s;
}
.wa-popup.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* WA header */
.wa-header {
  background: #075e54;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #128c7e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wa-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.wa-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.wa-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  display: inline-block;
}
.wa-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s;
}
.wa-close:hover {
  color: #fff;
}

/* WA chat body */
.wa-body {
  background: #ece5dd
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='%23c8bfb7' stroke-width='.5'/%3E%3C/svg%3E")
    repeat;
  padding: 1rem 1rem 1.2rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wa-bubble {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: #303030;
  line-height: 1.5;
  max-width: 85%;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.wa-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.wa-time {
  font-size: 0.65rem;
  color: #888;
  margin-top: 0.3rem;
  text-align: right;
}

/* WA footer / input */
.wa-footer {
  background: #f0f0f0;
  padding: 0.65rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.wa-input {
  flex: 1;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #303030;
  resize: none;
  line-height: 1.4;
  max-height: 100px;
}
.wa-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.15s;
}
.wa-send:hover {
  background: #20b85a;
  transform: scale(1.08);
}
.wa-send svg {
  fill: #fff;
}
