/* ── 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);
}

/* 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;
}

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;
}

.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;
}

/* 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);
}

/* 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);
}

/* Packages */
#packages {
  padding: 7rem 6vw;
  background: var(--bg-dark, #1c1c1a);
  position: relative;
  overflow: hidden;
}
#packages::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 60% at 50% 110%,
    rgba(249, 115, 22, 0.08) 0%,
    transparent 70%
  );
}
.packages-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.packages-header .section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 1rem;
}
.packages-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #f5f0eb;
}
.packages-header h2 em {
  font-style: normal;
  color: #f97316;
}
.packages-header p {
  color: #9e9b95;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 1rem auto 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.pkg-card {
  position: relative;
  overflow: hidden;
  background: #313130;
  padding: 3.2rem 2.8rem 2.8rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(249, 115, 22, 0.08);
  transition:
    transform 0.35s ease,
    background 0.3s ease;
}
.pkg-card:hover {
  transform: translateY(-5px);
  background: #3a3a38;
}
.pkg-card.pkg-ecom {
  border-top: 3px solid #f97316;
}
.pkg-card.pkg-web {
  border-top: 3px solid rgba(249, 115, 22, 0.3);
}
.pkg-card.pkg-web:hover {
  border-top-color: #f97316;
}

/* faint watermark text */
.pkg-watermark {
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
  font-family: "Syne", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(249, 115, 22, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.pkg-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f97316;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}
.pkg-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(249, 115, 22, 0.18);
}

.pkg-card h3 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #f5f0eb;
  margin-bottom: 0.9rem;
}
.pkg-card h3 em {
  font-style: normal;
  color: #f97316;
}

.pkg-card > p {
  color: #9e9b95;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  flex: 1;
}

.pkg-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.pkg-bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #f5f0eb;
}
.pkg-bullets li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
}

.pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.88rem 1.7rem;
  border-radius: 2px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  align-self: flex-start;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    background 0.2s,
    color 0.2s;
}
.pkg-cta svg {
  flex-shrink: 0;
}

.pkg-card.pkg-ecom .pkg-cta {
  background: #f97316;
  color: #262624;
}
.pkg-card.pkg-ecom .pkg-cta:hover {
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}
.pkg-card.pkg-web .pkg-cta {
  background: transparent;
  color: #f97316;
  border: 1.5px solid rgba(249, 115, 22, 0.35);
}
.pkg-card.pkg-web .pkg-cta:hover {
  background: #f97316;
  color: #262624;
  border-color: #f97316;
}

@media (max-width: 700px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .pkg-card {
    padding: 2.4rem 1.8rem 2.2rem;
  }
  #packages {
    padding: 5rem 5vw;
  }
}

/* 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);
}

/* 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;
}
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);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .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;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
}
