/* =======================
   HERO SECTION
======================= */
.hero {
  min-height: 100vh;
  padding: 100px 0;
  background: linear-gradient(145deg, #0a0415 0%, #130825 30%, #0d1535 60%, #050a1a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 10% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 85% 15%, rgba(168, 85, 247, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 50% 90%, rgba(236, 72, 153, 0.10) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-text {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fdba74;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.hero-badge i {
  font-size: 1rem;
  color: #fb923c;
}

h1 {
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
}

h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #f97316, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 25px 0 40px;
  line-height: 1.7;
}

/* Buttons */
.btn-main {
  background: linear-gradient(90deg, #f97316, #ec4899);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.55);
  color: white;
}

.btn-outline-custom {
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline-custom:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* Stats */
.hero-stats {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:nth-child(1) { --si-color: #fb923c; }
.stat-item:nth-child(2) { --si-color: #a855f7; }
.stat-item:nth-child(3) { --si-color: #10b981; }

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--si-color, #fb923c);
  display: block;
}

.stat-num i {
  font-size: 1.4rem;
  color: var(--si-color, #fb923c);
  vertical-align: middle;
}

.stat-label {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding-top: 4px;
  font-weight: 400;
}

/* Metric Cards */
.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.metric-card:nth-child(2n) {
  margin-top: 30px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.metric-icon i,
.metric-icon svg {
  font-size: 1.5rem;
}

.metric-icon.orange   { background: rgba(249, 115, 22, 0.15); }
.metric-icon.orange i { color: #fb923c; }

.metric-icon.teal   { background: rgba(20, 184, 166, 0.15); }
.metric-icon.teal i { color: #2dd4bf; }

.metric-icon.sand   { background: rgba(245, 158, 11, 0.15); }
.metric-icon.sand i { color: #fbbf24; }

.metric-icon.cream   { background: rgba(168, 85, 247, 0.15); }
.metric-icon.cream i { color: #c084fc; }

.metric-val {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.metric-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.metric-trend {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ade80;
  margin-top: 8px;
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 120px 0 60px;
  }

  .hero-sub {
    margin: 20px auto 35px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 50px;
  }
}


/* =======================
   SERVICES SECTION
======================= */

/* Per-card color cycling */
#services .row > div:nth-child(1) { --sc: #f97316; --sc-bg: rgba(249,115,22,0.08); }
#services .row > div:nth-child(2) { --sc: #a855f7; --sc-bg: rgba(168,85,247,0.08); }
#services .row > div:nth-child(3) { --sc: #0ea5e9; --sc-bg: rgba(14,165,233,0.08); }
#services .row > div:nth-child(4) { --sc: #10b981; --sc-bg: rgba(16,185,129,0.08); }
#services .row > div:nth-child(5) { --sc: #ec4899; --sc-bg: rgba(236,72,153,0.08); }
#services .row > div:nth-child(6) { --sc: #f59e0b; --sc-bg: rgba(245,158,11,0.08); }

#services .service-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid color-mix(in srgb, var(--sc, #f97316), transparent 82%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}

#services .service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sc, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

#services .service-card:hover {
  box-shadow: 0 12px 40px color-mix(in srgb, var(--sc, #f97316), transparent 82%);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--sc, #f97316), transparent 60%);
}

#services .service-card:hover::after {
  transform: scaleX(1);
}

#services .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--sc-bg, rgba(249,115,22,0.08)) !important;
  color: var(--sc, #f97316);
  transition: all 0.3s ease;
}

#services .service-card:hover .service-icon {
  background: var(--sc, #f97316) !important;
  color: #ffffff;
  transform: scale(1.08) rotate(-5deg);
}

#services .service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

#services .service-card p {
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.7;
  opacity: 0.8;
}

#services .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

#services .tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--sc, #f97316), transparent 88%);
  color: var(--sc, #f97316);
  border: 1px solid color-mix(in srgb, var(--sc, #f97316), transparent 75%);
}

/* =======================
   SECTION TYPOGRAPHY
======================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.section-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.section-sub {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}


/* =======================
   WHY US SECTION
======================= */
#why {
  background: linear-gradient(135deg,
    rgba(249, 115, 22, 0.04) 0%,
    rgba(168, 85, 247, 0.04) 50%,
    rgba(236, 72, 153, 0.04) 100%);
}

#why .section-sub {
  margin: 0;
  text-align: left;
}

#why .section-tag {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.2);
}

#why .section-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-left: 0;
}

#why .section-sub {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
  text-align: left;
}

#why .why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#why .why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#why .why-item:nth-child(1) .why-num { color: #f97316; }
#why .why-item:nth-child(2) .why-num { color: #a855f7; }
#why .why-item:nth-child(3) .why-num { color: #0ea5e9; }
#why .why-item:nth-child(4) .why-num { color: #10b981; }

#why .why-num {
  font-size: 2.5rem;
  font-weight: 800;
  opacity: 0.7;
  line-height: 1;
  min-width: 55px;
}

#why .why-item h4 {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 6px;
}

#why .why-item p {
  font-size: 0.9rem;
  color: var(--default-color);
  line-height: 1.7;
  opacity: 0.8;
}

#why .why-visual {
  background: linear-gradient(145deg,
    rgba(249, 115, 22, 0.05),
    rgba(168, 85, 247, 0.06));
  border-radius: 32px;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(249, 115, 22, 0.12);
}

#why .process-step {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why .process-step:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

#why .process-step:last-child {
  margin-bottom: 0;
}

#why .step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#why .dot-1 { background: linear-gradient(135deg, #f97316, #fb923c); box-shadow: 0 4px 12px rgba(249,115,22,0.4); }
#why .dot-2 { background: linear-gradient(135deg, #a855f7, #c084fc); box-shadow: 0 4px 12px rgba(168,85,247,0.4); }
#why .dot-3 { background: linear-gradient(135deg, #0ea5e9, #38bdf8); box-shadow: 0 4px 12px rgba(14,165,233,0.4); }
#why .dot-4 { background: linear-gradient(135deg, #10b981, #34d399); box-shadow: 0 4px 12px rgba(16,185,129,0.4); }

#why .step-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

#why .step-info p {
  font-size: 0.8rem;
  color: var(--default-color);
  margin-top: 2px;
  opacity: 0.7;
}


/* =======================
   RESULTS SECTION
======================= */
#results {
  background: linear-gradient(145deg, #0a0415 0%, #130825 40%, #0d1535 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#results::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 20% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 80% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

#results .container {
  position: relative;
  z-index: 1;
}

#results .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fdba74;
  border-color: rgba(249, 115, 22, 0.3);
}

#results .section-title {
  color: #ffffff;
}

#results .section-sub {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Per-card color */
#results .row > div:nth-child(1) { --rc: #f97316; }
#results .row > div:nth-child(2) { --rc: #a855f7; }
#results .row > div:nth-child(3) { --rc: #0ea5e9; }
#results .row > div:nth-child(4) { --rc: #10b981; }

#results .result-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#results .result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rc, #f97316);
  border-radius: 24px 24px 0 0;
}

#results .result-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: color-mix(in srgb, var(--rc, #f97316), transparent 50%);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--rc, #f97316), transparent 75%);
}

#results .result-big {
  font-size: 3rem;
  font-weight: 800;
  color: var(--rc, #f97316);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 8px;
}

#results .result-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.4;
}

#results .result-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  font-weight: 500;
}


/* =======================
   TESTIMONIALS SECTION
======================= */
#testimonials {
  background: var(--background-color);
}

#testimonials .testi-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Per-card color for testimonials */
#testimonials .row > div:nth-child(1) .testi-card { --tsc: #f97316; border-top: 3px solid #f97316; }
#testimonials .row > div:nth-child(2) .testi-card { --tsc: #a855f7; border-top: 3px solid #a855f7; }
#testimonials .row > div:nth-child(3) .testi-card { --tsc: #0ea5e9; border-top: 3px solid #0ea5e9; }

#testimonials .testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px color-mix(in srgb, var(--tsc, #f97316), transparent 80%);
}

#testimonials .stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

#testimonials .testi-text {
  font-size: 0.92rem;
  color: var(--default-color);
  line-height: 1.75;
  font-style: italic;
  opacity: 0.85;
  flex: 1;
}

#testimonials .testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

#testimonials .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

#testimonials .author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 600;
}

#testimonials .author-info span {
  font-size: 0.78rem;
  color: var(--default-color);
  opacity: 0.65;
}

@media (max-width: 991px) {
  #testimonials .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  #testimonials [class^="col-"] {
    margin-bottom: 24px;
  }

  #testimonials .testi-card {
    padding: 24px;
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  #testimonials .section-title {
    font-size: 1.8rem;
  }

  #testimonials .testi-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}


/* =======================
   CONTACT SECTION
======================= */
#contact {
  background: linear-gradient(135deg,
    rgba(249, 115, 22, 0.04) 0%,
    rgba(168, 85, 247, 0.05) 50%,
    rgba(236, 72, 153, 0.04) 100%);
}

#contact .section-tag {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.2);
}

#contact .contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

#contact .contact-info p {
  font-size: 0.92rem;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.8;
}

/* Per-detail-icon colors */
#contact .contact-detail:nth-child(1) .detail-icon { background: rgba(249, 115, 22, 0.12); color: #f97316; }
#contact .contact-detail:nth-child(2) .detail-icon { background: rgba(168, 85, 247, 0.12); color: #a855f7; }
#contact .contact-detail:nth-child(3) .detail-icon { background: rgba(14, 165, 233, 0.12); color: #0ea5e9; }
#contact .contact-detail:nth-child(4) .detail-icon { background: rgba(16, 185, 129, 0.12); color: #10b981; }

#contact .contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

#contact .detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

#contact .contact-detail:hover .detail-icon {
  transform: scale(1.1) rotate(-5deg);
}

#contact .detail-label {
  font-size: 0.75rem;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

#contact .detail-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--default-color);
}

#contact .form-card {
  background: var(--surface-color);
  border-radius: 28px;
  padding: 44px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

#contact .form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ec4899, #a855f7);
}

#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#contact .form-group {
  margin-bottom: 20px;
}

#contact label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 82%);
  border-radius: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  color: var(--default-color);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
  background: var(--surface-color);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  cursor: pointer;
}

#contact .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

#contact .form-check-input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  cursor: pointer;
  border: 1.5px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  position: relative;
  flex-shrink: 0;
}

#contact .form-check-input:checked {
  background-color: #f97316;
  border-color: #f97316;
}

#contact .form-check-input::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) scale(0);
  transition: 0.1s transform ease;
  margin-bottom: 2px;
}

#contact .form-check-input:checked::after {
  transform: rotate(-45deg) scale(1);
}

#contact .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

#contact .form-check-label {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--default-color);
  opacity: 0.75;
  cursor: pointer;
  user-select: none;
}

#contact .success-msg {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.95rem;
}

#contact .submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #f97316, #ec4899);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  letter-spacing: 0.3px;
}

#contact .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

@media (max-width: 767px) {
  #contact .form-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  #contact .form-row {
    grid-template-columns: 1fr;
  }
}
