:root {
  --bg: #060816;
  --bg-soft: #0d1227;
  --surface: rgba(10, 16, 34, 0.76);
  --surface-strong: rgba(14, 22, 44, 0.94);
  --surface-light: rgba(255, 255, 255, 0.06);
  --line: rgba(145, 173, 255, 0.16);
  --line-strong: rgba(145, 173, 255, 0.3);
  --text: #eef4ff;
  --muted: #a8b5da;
  --accent: #57c7ff;
  --accent-strong: #6e69ff;
  --accent-soft: rgba(87, 199, 255, 0.16);
  --success: #25d366;
  --shadow: 0 30px 80px rgba(3, 8, 24, 0.55);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
  background-color: #060816;
}

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

body {
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(70, 107, 255, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(101, 70, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #040713 0%, #070c1d 50%, #040713 100%);
}

body.loading {
  overflow: hidden;
}

body.loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(1180px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.85rem;
  background:
    radial-gradient(circle at center, rgba(87, 199, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(4, 7, 19, 0.98), rgba(4, 7, 19, 1));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader-core {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}

.loader-mark {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: #03101c;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #9ee7ff 0%, #5ac8ff 48%, #7a6dff 100%);
  box-shadow: 0 10px 30px rgba(87, 199, 255, 0.35);
}

.loader-ring {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(87, 199, 255, 0.24);
}

.loader-ring-a {
  animation: spin 3.2s linear infinite;
}

.loader-ring-b {
  inset: 0;
  border-color: rgba(110, 105, 255, 0.24);
  animation: spinReverse 4s linear infinite;
}

.loader-title,
.loader-subtitle {
  margin: 0;
  text-align: center;
}

.loader-title {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.loader-subtitle {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(145, 173, 255, 0.08);
  background: rgba(5, 9, 20, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo,
.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(87, 199, 255, 0.2));
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy span,
.footer-brand span,
.footer-copy {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links,
.footer-links,
.footer-socials {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 1.25rem;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@keyframes spin-border {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-cta::before,
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  padding-bottom: 150%;
  background: conic-gradient(transparent 70%, rgba(255, 255, 255, 0.9) 100%);
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: -2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta:hover::before,
.btn:hover::before {
  opacity: 1;
  animation: spin-border 2s linear infinite;
}

.nav-cta::after,
.btn::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9ee7ff 0%, #5ac8ff 35%, #7a6dff 100%);
  z-index: -1;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}

.nav-cta,
.btn-primary {
  color: #04111f;
  background: linear-gradient(135deg, #9ee7ff 0%, #5ac8ff 35%, #7a6dff 100%);
  box-shadow: 0 18px 50px rgba(87, 199, 255, 0.3);
  border: none;
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-secondary::after,
.btn-secondary::before {
  display: none !important;
}

.btn-secondary:hover {
  transform: none;
  filter: none;
}

.wide-btn {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--text);
}

.hero,
.section {
  position: relative;
  padding: 5rem 0;
}

.hero {
  padding-top: 4rem;
}

.hero-layout,
.contact-layout,
.process-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-layout {
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(87, 199, 255, 0.2);
  border-radius: 999px;
  background: rgba(87, 199, 255, 0.08);
  color: #9ce8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO CARD TEXT SIZE IMPROVEMENT */
.hero-card-simple h2 {
  font-size: 2.2rem;
  /* bigger title */
  font-weight: 700;
}

.hero-card-simple p {
  font-size: 1.05rem;
  /* slightly bigger paragraph */
  line-height: 1.6;
}

.hero-card-simple .simple-points span {
  font-size: 0.95rem;
  /* better readability */
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.94;
}

h2 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 640px;
  margin-top: 1.3rem;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-metrics,
.feature-grid,
.service-grid,
.testimonial-grid,
.contact-cards {
  display: grid;
  gap: 1rem;
}

.hero-metrics {
  margin-top: 2rem;
}

.hero-metrics article,
.feature-card,
.service-card,
.process-step,
.testimonial-card,
.cta-panel,
.contact-info,
.contact-form,
.contact-tile,
.hero-card-simple {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-visual {
  display: flex;
  align-items: center;
}

.hero-card-simple {
  width: min(100%, 460px);
  margin-left: auto;
  padding: 2rem;
  border-radius: 30px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(10, 16, 34, 0.9)),
    rgba(10, 16, 34, 0.85);
}

.hero-art {
  position: relative;
  width: min(280px, 82%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.35rem;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(145, 173, 255, 0.18);
  background:
    radial-gradient(circle at 18% 18%, rgba(87, 199, 255, 0.34), transparent 24%),
    radial-gradient(circle at 76% 24%, rgba(110, 105, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(10, 16, 34, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 50px rgba(3, 8, 24, 0.35);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.hero-orb-a {
  top: 14%;
  left: 10%;
  width: 92px;
  height: 92px;
  background: rgba(87, 199, 255, 0.26);
}

.hero-orb-b {
  top: 18%;
  right: 12%;
  width: 76px;
  height: 76px;
  background: rgba(110, 105, 255, 0.26);
}

.hero-orb-c {
  right: 18%;
  bottom: 12%;
  width: 128px;
  height: 128px;
  background: rgba(87, 199, 255, 0.14);
}

.hero-art-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.85rem;
  padding: 1rem;
  opacity: 0.85;
}

.hero-art-grid span {
  border-radius: 24px;
  border: 1px solid rgba(145, 173, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(8px);
}

.hero-art-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(76%, 220px);
  padding: 1.15rem 1rem;
  border-radius: 24px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(145, 173, 255, 0.2);
  background: rgba(4, 9, 20, 0.72);
  box-shadow: 0 18px 40px rgba(3, 8, 24, 0.32);
}

.hero-art-core strong,
.hero-art-core span {
  display: block;
}

.hero-art-core strong {
  color: #eef7ff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
}

.hero-art-core span {
  margin-top: 0.45rem;
  color: #9ddfff;
  font-size: 0.88rem;
  line-height: 1.5;
}

.simple-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.simple-points span {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d9eeff;
  font-size: 0.9rem;
}


.panel-label,
.tile-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #8fcbff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.feature-grid,
.service-grid,
.testimonial-grid {
  grid-template-columns: 1fr;
}

.feature-card,
.service-card,
.testimonial-card,
.contact-info,
.contact-form,
.contact-tile,
.cta-panel {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(87, 199, 255, 0.16), rgba(122, 109, 255, 0.16));
}

.icon-wrap svg,
.footer-socials svg,
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(87, 199, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.service-index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #8fcbff;
  font-size: 0.9rem;
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.process-step span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #04111f;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #9ee7ff, #6e69ff);
}

.stars {
  color: #ffd76a;
  letter-spacing: 0.2em;
}

.testimonial-card strong,
.contact-tile strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.testimonial-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(87, 199, 255, 0.14), rgba(122, 109, 255, 0.14)),
    rgba(9, 14, 30, 0.85);
}

.contact-layout {
  align-items: start;
}

.contact-cards {
  margin-top: 1.5rem;
}

.whatsapp-tile {
  border-color: rgba(37, 211, 102, 0.28);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #dbe8ff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--text);
  border: 1px solid rgba(145, 173, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(87, 199, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(87, 199, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form-note {
  font-size: 0.92rem;
}

/* Professional Footer Styles */
.footer-pro {
  padding: 5rem 0 3rem;
  background: var(--bg);
  border-top: 1px solid rgba(87, 199, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col-brand p {
  margin-top: 1.2rem;
  max-width: 300px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer-col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-col a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: #57c7ff;
}

.footer-socials-pro {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-socials-pro a,
.back-to-top {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.footer-socials-pro a:hover,
.back-to-top:hover {
  background: var(--surface);
  border-color: #57c7ff;
  color: #57c7ff;
}

.footer-socials-pro a svg,
.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom-pro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(145, 173, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-bottom-pro {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-legal {
    margin-left: auto;
    margin-right: 2rem;
  }
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #fff;
}

.whatsapp-float {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;

  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  color: #032312;
  background: linear-gradient(135deg, #5cff93, #25d366);
  border-color: rgba(37, 211, 102, 0.5);
}

/* Interactive Shader */
.interactive-shader {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.interactive-shader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(87, 199, 255, 0.24), transparent 28%),
    radial-gradient(circle at 80% 35%, rgba(110, 105, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(4, 7, 19, 0.94), rgba(6, 8, 22, 1));
  z-index: 0;
}

#shaderCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 700px) {
  .container {
    width: min(1180px, calc(100% - 2rem));
  }

  .feature-grid,
  .testimonial-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-panel {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 960px) {

  .hero-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }

  .process-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 959px) {
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(8, 13, 28, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 699px) {

  .hero,
  .section {
    padding: 4rem 0;
  }

  .hero-card-simple {
    margin-right: auto;
  }

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

  .process-step span {
    width: 48px;
    height: 48px;
  }

  #shaderCanvas {
    display: none;
  }
}


.instagram-float {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;

  position: fixed;
  right: 1rem;
  bottom: 4.5rem; /* above WhatsApp */
  z-index: 35;

  color: white;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.instagram-float:hover {
  transform: scale(1.1);
}

.instagram-float svg {
  width: 40%;  
  height: 40%;
  transform: scale(1.2); 
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
/* ================= FORM CONTAINER ================= */
.contact-form {
  display: grid;
  gap: 1rem;
}

/* ================= LABEL ================= */
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #dbe8ff;
  font-weight: 600;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================= INPUT / TEXTAREA / SELECT ================= */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  font: inherit;
  color: #eef4ff;

  border: 1px solid rgba(145, 173, 255, 0.16);
  border-radius: 16px;

  background-color: #0d1227; /* FIXED dark background */
  outline: none;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ================= FOCUS EFFECT ================= */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(87, 199, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(87, 199, 255, 0.12);
}

/* ================= DROPDOWN OPTIONS ================= */
.contact-form select option {
  background-color: #0d1227;
  color: #eef4ff;
}

/* ================= REMOVE DEFAULT ARROW ================= */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* ================= CUSTOM ARROW ================= */
.contact-form label {
  position: relative;
}

.contact-form label select {
  padding-right: 2.5rem;
}

.contact-form label::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 70%;
  transform: translateY(-50%);
  color: #a8b5da;
  pointer-events: none;
  font-size: 0.8rem;
}

/* ================= BUTTONS ================= */
.form-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 15px;
}

/* FORCE CLEAN BUTTON STYLE */
.form-buttons .btn {
  width: 100%;
  font: inherit;

  color: #eef4ff !important;
  background: rgba(255, 255, 255, 0.04) !important;

  border: 1px solid rgba(145, 173, 255, 0.16) !important;
  border-radius: 999px;

  box-shadow: none !important;
}

/* REMOVE ALL GRADIENT EFFECTS */
.form-buttons .btn::before,
.form-buttons .btn::after {
  display: none !important;
  content: none !important;
}

/* HOVER */
.form-buttons .btn:hover {
  border-color: #57c7ff !important;
  color: #57c7ff !important;
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 500px) {
  .form-buttons {
    grid-template-columns: 1fr;
  }
}
