* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #030706;
  color: #f4f7f5;
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(72, 255, 164, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 255, 164, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -2;
}

/* =========================
   Cursor Glow
========================= */

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(50, 255, 155, 0.09),
    transparent 65%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* =========================
   Header
========================= */

.site-header {
  height: 82px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 7, 6, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.8px;
  color: white;
  text-decoration: none;
}

.logo span,
em {
  color: #41e69a;
  font-style: normal;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  color: #c5cbc8;
  text-decoration: none;
  font-size: 13px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav .active {
  color: #43e89c;
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(68, 234, 157, 0.7);
  border-radius: 9px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.header-cta span,
.btn span {
  margin-left: 8px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 22px;
}

/* =========================
   Buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid rgba(68, 234, 157, 0.7);
  border-radius: 9px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.btn-primary {
  background: #42dc94;
  color: #031009;
  border-color: #42dc94;
  box-shadow: 0 0 35px rgba(66, 220, 148, 0.13);
}

.btn-outline {
  border-color: #34403b;
}

/* =========================
   Hero
========================= */

.hero {
  min-height: 800px;
  padding: 72px 5% 30px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  max-width: 1500px;
  margin: auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  color: #d1d8d4;
  font-size: 12px;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3de697;
  box-shadow: 0 0 12px #3de697;
}

.hero h1 {
  font-size: clamp(48px, 5.1vw, 79px);
  line-height: 1.03;
  letter-spacing: -4px;
  margin: 24px 0 22px;
  max-width: 780px;
}

.hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #aab3af;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0 44px;
}

.stats {
  display: flex;
  gap: 30px;
}

.stats div {
  padding-right: 25px;
  border-right: 1px solid #29302d;
}

.stats div:last-child {
  border: 0;
}

.stats strong {
  display: block;
  font-size: 24px;
}

.stats span {
  display: block;
  color: #7f8985;
  font-size: 11px;
  margin-top: 7px;
}

/* =========================
   3D Hero Stage
========================= */

.hero-stage {
  height: 650px;
  position: relative;
  perspective: 1500px;
}

.platform {
  position: absolute;
  width: 520px;
  height: 105px;
  right: 4%;
  bottom: 55px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    #183e2c 0,
    #0c1713 48%,
    transparent 70%
  );
  box-shadow: 0 0 70px rgba(46, 235, 143, 0.17);
}

.platform::after {
  content: "";
  position: absolute;
  inset: 20px 35px;
  border: 1px solid rgba(74, 235, 157, 0.2);
  border-radius: 50%;
}

.dashboard-3d {
  position: absolute;
  top: 105px;
  right: 0;
  width: min(720px, 100%);
  height: 475px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(135deg, #101815, #080d0b);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(35, 211, 124, 0.08);
  display: flex;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
  transition: transform 0.25s ease;
}

.dash-side {
  width: 145px;
  background: rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 11px;
}

.product-mark {
  font-size: 11px;
  font-weight: 700;
  margin: 2px 8px 22px;
}

.product-mark span {
  color: #48e79a;
}

.dash-side a {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #86918b;
  padding: 10px;
  font-size: 10px;
  border-radius: 7px;
  margin: 3px 0;
}

.dash-side a.selected {
  color: #eafff5;
  background: linear-gradient(
    90deg,
    rgba(54, 218, 142, 0.22),
    rgba(54, 218, 142, 0.04)
  );
  border: 1px solid rgba(54, 218, 142, 0.15);
}

.dash-main {
  padding: 25px 20px;
  flex: 1;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.dash-top small {
  display: block;
  color: white;
  font-size: 19px;
  font-weight: 700;
}

.dash-top strong {
  display: block;
  color: #75817b;
  font-size: 8px;
  margin-top: 5px;
  font-weight: 400;
}

.search {
  font-size: 8px;
  color: #6d7772;
  border: 1px solid #26312c;
  border-radius: 7px;
  padding: 9px 14px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.metric-grid > div,
.panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 9px;
  padding: 12px;
}

.metric-grid small {
  display: block;
  color: #76817c;
  font-size: 8px;
}

.metric-grid b {
  display: block;
  font-size: 17px;
  margin: 7px 0;
}

.metric-grid span {
  color: #3edb91;
  font-size: 7px;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 9px;
  margin-top: 9px;
}

.panel {
  min-height: 125px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}

.panel-head small {
  color: #50e29a;
}

.chart-panel svg {
  width: 100%;
  height: 82px;
  margin-top: 12px;
}

.chart-panel polyline {
  fill: none;
  stroke: #43e49a;
  stroke-width: 3;
  filter: drop-shadow(0 0 5px rgba(67, 228, 154, 0.5));
}

.orders div,
.drivers div {
  font-size: 8px;
  padding: 7px 0;
  color: #b4bcb8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.orders span {
  float: right;
  color: #49df97;
}

.drivers b {
  float: right;
  color: #f4c95d;
}

.route {
  height: 82px;
  margin-top: 12px;
  position: relative;
  background: linear-gradient(135deg, #0b1512, #0d1d18);
  overflow: hidden;
  border-radius: 7px;
}

.route::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 70px;
  left: 45px;
  top: 12px;
  border: 2px solid #46df97;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(22deg);
}

.route i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45e19a;
  box-shadow: 0 0 12px #45e19a;
}

.route i:nth-child(1) {
  left: 52px;
  top: 55px;
}

.route i:nth-child(2) {
  left: 140px;
  top: 30px;
}

.route i:nth-child(3) {
  left: 215px;
  top: 53px;
}

.route span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 7px;
  color: #e7eeeb;
}

/* =========================
   Floating Cards
========================= */

.float-card {
  position: absolute;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(12, 20, 17, 0.82);
  backdrop-filter: blur(14px);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 4;
}

.float-card small {
  display: block;
  color: #89948e;
  font-size: 9px;
}

.float-card b {
  display: block;
  font-size: 17px;
  margin-top: 5px;
}

.growth-card {
  left: 2%;
  bottom: 155px;
  transform: rotate(-10deg);
}

.revenue-card {
  right: -2%;
  top: 245px;
  transform: rotate(8deg);
}

.mini-line {
  width: 90px;
  height: 25px;
  margin-top: 8px;
  border-bottom: 2px solid #42dc94;
  transform: skewY(-12deg);
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.ambient-a {
  width: 360px;
  height: 360px;
  right: 20%;
  top: 20%;
  background: #0bd87c;
}

.ambient-b {
  width: 280px;
  height: 280px;
  right: -5%;
  bottom: 5%;
  background: #126a47;
}

/* =========================
   Trusted
========================= */

.trusted {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 5% 70px;
  text-align: center;
  color: #747e79;
  font-size: 13px;
}

.trusted > div {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 25px;
  color: #aab1ae;
  flex-wrap: wrap;
}

/* =========================
   Sections
========================= */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 5%;
}

.about {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

label {
  color: #42df96;
  font-size: 10px;
  letter-spacing: 1.7px;
}

.section-intro h2,
.section-heading h2,
.process-box h2 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 16px 0;
}

.section-intro p {
  color: #8f9a94;
  line-height: 1.75;
  font-size: 14px;
}

.text-link {
  display: inline-block;
  color: #dce3df;
  text-decoration: none;
  font-size: 12px;
  margin-top: 20px;
}

/* =========================
   Services
========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-grid article {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.012)
  );
  border-radius: 10px;
  min-height: 180px;
}

.service-grid span {
  color: #45e19a;
  font-size: 23px;
}

.service-grid h3 {
  font-size: 14px;
  margin: 20px 0 8px;
}

.service-grid p,
.project p {
  font-size: 11px;
  line-height: 1.7;
  color: #7f8985;
}

/* =========================
   Projects
========================= */

.projects {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.project {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.018);
}

.project-image {
  height: 170px;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  background: #0d1512;
}

.dashboard-thumb {
  background: linear-gradient(135deg, #111c18, #07100c);
}

.fake-chart {
  position: absolute;
  inset: 35px 20px;
  border-bottom: 2px solid #40dd96;
  clip-path: polygon(
    0 80%,
    15% 55%,
    28% 68%,
    43% 40%,
    58% 55%,
    70% 20%,
    82% 35%,
    100% 0,
    100% 100%,
    0 100%
  );
  background: linear-gradient(
    180deg,
    rgba(64, 221, 150, 0.25),
    transparent
  );
}

.analytics-thumb {
  background: linear-gradient(135deg, #e9f1ee, #8dbfa7);
}

.fake-bars {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  height: 100px;
  background: repeating-linear-gradient(
    90deg,
    #17241f 0 13px,
    transparent 13px 28px
  );
  clip-path: polygon(
    0 75%,
    10% 45%,
    20% 62%,
    30% 35%,
    40% 50%,
    50% 20%,
    60% 40%,
    70% 15%,
    80% 30%,
    90% 5%,
    100% 20%,
    100% 100%,
    0 100%
  );
}

.landing-thumb {
  background: radial-gradient(
      circle at 70% 40%,
      #4ce29d,
      #0b1712 45%,
      #030706 80%
  );
}

.fake-orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #fff, #42e39a 30%, #0b1813);
  box-shadow: 0 0 40px rgba(66, 227, 154, 0.5);
}

.seo-thumb {
  background: linear-gradient(135deg, #edf5f1, #c6d9d0);
}

.seo-ring {
  width: 90px;
  height: 90px;
  border: 10px solid #43df98;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: #12251b;
  font-weight: 800;
  font-size: 20px;
}

.project > small {
  font-size: 9px;
  color: #44dd96;
}

.project h3 {
  font-size: 15px;
  margin: 9px 0;
}

.project a {
  font-size: 10px;
  color: #b9c2bd;
  text-decoration: none;
}

/* =========================
   Process
========================= */

.process {
  padding-top: 50px;
}

.process-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.025),
    rgba(65, 224, 151, 0.025)
  );
  padding: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.process-box ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.process-box li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 20px;
  font-size: 11px;
}

.process-box li b {
  width: 110px;
}

.process-box li span {
  color: #7d8882;
}

.why {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 50px;
}

.why h3 {
  font-size: 12px;
  margin: 24px 0 4px;
}

.why p {
  font-size: 11px;
  color: #7d8882;
  margin: 0;
}

/* =========================
   CTA
========================= */

.cta {
  max-width: 1200px;
  margin: 30px auto 90px;
  padding: 50px 55px;
  border: 1px solid rgba(70, 224, 153, 0.15);
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(48, 208, 139, 0.12),
      transparent 45%
    ),
    #09100d;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta h2 {
  font-size: 35px;
  letter-spacing: -1.5px;
  margin: 0 0 10px;
}

.cta p {
  color: #7d8983;
  font-size: 13px;
}

/* =========================
   Footer
========================= */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 35px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #69736e;
  font-size: 11px;
}

footer p {
  margin: 0;
}

/* =========================
   Reveal Animation
========================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .hero-stage {
    margin-top: 20px;
    height: 560px;
  }

  .dashboard-3d {
    right: 2%;
    width: 90%;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .header-cta {
    margin-left: auto;
    margin-right: 18px;
  }

  .process-box {
    grid-template-columns: 1fr;
  }

  .why {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 0;
  }

  .cta {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 650px) {
  .site-header {
    padding: 0 20px;
  }

  .hero {
    padding: 45px 20px 20px;
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: -2.5px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stats {
    gap: 14px;
    flex-wrap: wrap;
  }

  .stats div {
    width: 43%;
    border-right: 0;
  }

  .hero-stage {
    height: 420px;
    transform: scale(0.72);
    transform-origin: top left;
    width: 139%;
  }

  .dashboard-3d {
    top: 30px;
    right: 0;
  }

  .float-card {
    display: none;
  }

  .trusted {
    padding: 0 20px 50px;
  }

  .trusted > div {
    justify-content: center;
  }

  .section {
    padding: 70px 20px;
  }

  .section-intro h2,
  .section-heading h2,
  .process-box h2 {
    font-size: 34px;
  }

  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .process-box {
    padding: 25px;
  }

  .process-box li {
    display: block;
  }

  .process-box li b {
    display: block;
    margin-bottom: 4px;
  }

  .cta {
    margin: 10px 20px 60px;
    padding: 30px;
    display: block;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta .btn {
    margin-top: 20px;
  }

  footer {
    padding: 30px 20px;
    display: block;
  }

  footer p {
    margin: 12px 0;
  }
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5% 110px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.contact-heading h2 {
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin: 16px 0;
}

.contact-heading p {
    color: #89948e;
    font-size: 14px;
    line-height: 1.8;
    max-width: 620px;
}


/* CONTACT WRAPPER */

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: stretch;
}


/* CONTACT INFO */

.contact-info {
    padding: 38px 10px 30px 0;
}

.contact-badge {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid rgba(66,220,148,0.25);
    border-radius: 999px;
    color: #42dc94;
    font-size: 9px;
    letter-spacing: 1.2px;
}

.contact-info h3 {
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1.8px;
    margin: 25px 0 18px;
}

.contact-info > p {
    max-width: 430px;
    color: #7f8985;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 35px;
}


/* CONTACT DETAILS */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    background: rgba(255,255,255,0.018);
    transition: 0.25s ease;
}

.contact-item:hover {
    border-color: rgba(66,220,148,0.35);
    background: rgba(66,220,148,0.035);
    transform: translateX(4px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #42dc94;
    background: rgba(66,220,148,0.08);
    border: 1px solid rgba(66,220,148,0.12);
    font-size: 18px;
}

.contact-item small {
    display: block;
    color: #68736d;
    font-size: 9px;
    margin-bottom: 5px;
}

.contact-item strong {
    display: block;
    color: #dce5e0;
    font-size: 12px;
    font-weight: 500;
}


/* FORM CARD */

.contact-form-card {
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(66,220,148,0.07),
            transparent 35%
        ),
        rgba(255,255,255,0.018);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);
}


/* FORM ROW */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}


/* FORM GROUP */

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;
    color: #c6cfca;
    font-size: 10px;
    letter-spacing: 0.2px;
    margin-bottom: 8px;
}


/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #26312c;
    border-radius: 8px;
    background: rgba(0,0,0,0.22);
    color: #edf4f0;
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition: 0.25s ease;
}

.form-group input,
.form-group select {
    height: 47px;
    padding: 0 14px;
}

.form-group textarea {
    min-height: 135px;
    padding: 14px;
    resize: vertical;
    line-height: 1.6;
}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #59645f;
}


/* SELECT */

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #0a110e;
    color: #fff;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(66,220,148,0.65);
    box-shadow: 0 0 0 3px rgba(66,220,148,0.06);
}


/* SUBMIT BUTTON */

.contact-submit {
    width: 100%;
    height: 52px;
    border: 1px solid #42dc94;
    border-radius: 8px;
    background: #42dc94;
    color: #031009;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 0 35px rgba(66,220,148,0.10);
}

.contact-submit b {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(66,220,148,0.15);
}

.contact-submit:hover b {
    transform: translateX(4px);
}

.contact-submit:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}


/* SUCCESS / ERROR */

.contact-success,
.contact-error {
    display: none;
    margin-top: 15px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.5;
}

.contact-success {
    color: #55e9a0;
    background: rgba(66,220,148,0.07);
    border: 1px solid rgba(66,220,148,0.18);
}

.contact-error {
    color: #ff8d8d;
    background: rgba(255,80,80,0.06);
    border: 1px solid rgba(255,80,80,0.15);
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-info > p {
        max-width: 650px;
    }

}


@media (max-width: 650px) {

    .contact-section {
        padding: 70px 20px 80px;
    }

    .contact-heading {
        margin-bottom: 35px;
    }

    .contact-heading h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .contact-heading p {
        font-size: 13px;
    }

    .contact-info {
        padding: 0;
    }

    .contact-info h3 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 22px;
    }

    .form-group input,
    .form-group select {
        height: 48px;
    }

}