/* ============================================================
   iCommerce Easy — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #4A6CF7;
  --primary-dark: #3a5ce4;
  --primary-light: #e8edff;
  --navy: #111928;
  --navy-mid: #1e2d45;
  --gray-text: #6b7280;
  --gray-light: #e5e7eb;
  --bg-white: #ffffff;
  --bg-section: #F8F9FA;
  --font: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(74, 108, 247, 0.10);
  --shadow-card: 0 2px 16px rgba(17, 25, 40, 0.08);
  --transition: 0.25s ease;
  --max-width: 1160px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  color: var(--gray-text);
}

/* ── Layout Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-section);
}

.text-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(74, 108, 247, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ── Section Label ── */
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ── Divider ── */
.section-divider {
  width: 56px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-divider.left {
  margin-left: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 38px;
  width: auto;
}

.navbar__logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  transition: color var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--primary);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  width: 100%;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  border-radius: 6px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--gray-light);
  padding: 16px 24px 20px;
}

.navbar__mobile a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
  color: #374151;
}

.navbar__mobile a:last-child {
  border-bottom: none;
}

.navbar__mobile .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
.navbar__mobile .btn-primary {
  color: #fff;
}

@media (max-width: 768px) {

  .navbar__nav,
  .navbar__right {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar__mobile.open {
    display: flex;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__brand-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer__brand-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--primary);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   HOME — Hero
   ============================================================ */
.hero {
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: block;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Graphic */
.hero__graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.hero__blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, #e8edff 0%, #d4dcff 100%);
  z-index: 0;
  animation: blobmorph 8s ease-in-out infinite;
}

@keyframes blobmorph {

  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  }

  50% {
    border-radius: 45% 55% 40% 60% / 60% 40% 60% 40%;
  }
}

.hero__undraw {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(74, 108, 247, 0.15));
}

.hero__stat-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero__stat-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}

.hero__stat-card:nth-child(1) {
  top: 15%;
  left: -5%;
  animation-delay: 0s;
}

.hero__stat-card:nth-child(2) {
  bottom: 20%;
  right: -8%;
  animation-delay: 1.5s;
}

.hero__stat-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__stat-card .card-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__graphic {
    min-height: unset;
  }

  .hero__blob {
    width: 300px;
    height: 300px;
  }

  .hero__undraw {
    max-width: 320px;
  }

  .hero__stat-card:nth-child(1) {
    left: 0;
  }

  .hero__stat-card:nth-child(2) {
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 48px;
  }

  .hero__graphic {
    display: none;
  }
}

/* ============================================================
   HOME — What We Do (Features)
   ============================================================ */
.features__header {
  text-align: center;
  margin-bottom: 56px;
}

.features__header h2 {
  margin-top: 12px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   HOME — Why Us
   ============================================================ */
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us__graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us__undraw {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(74, 108, 247, 0.13));
}

.why-us__badge {
  position: absolute;
  bottom: 10%;
  right: 5%;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.why-us__badge .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us__badge .card-icon svg {
  width: 18px;
  height: 18px;
}

.why-us__content h2 {
  margin-bottom: 20px;
}

.why-us__content p.intro {
  margin-bottom: 32px;
  font-size: 1rem;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-us__check svg {
  width: 13px;
  height: 13px;
}

.why-us__item-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-us__item-text span {
  font-size: 0.92rem;
  color: var(--gray-text);
}

@media (max-width: 900px) {
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us__undraw {
    max-width: 320px;
  }
}

/* ============================================================
   HOME — Bottom CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #4A6CF7 0%, #2d4ed8 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: var(--bg-section);
  padding: 80px 0 64px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.service-block {
  padding: 80px 0;
}

.service-block:nth-child(even) {
  background: var(--bg-section);
}

.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.service-block__inner.reverse {
  direction: rtl;
}

.service-block__inner.reverse>* {
  direction: ltr;
}

.service-block__graphic {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-block__graphic .graphic-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #d4dcff 100%);
}

.service-block__graphic svg.svc-svg {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
}

.svc-undraw {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 12px 32px rgba(74, 108, 247, 0.13));
}

.service-block__content .section-label {
  margin-bottom: 12px;
}

.service-block__content h3 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.service-block__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.service-tag {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
}

@media (max-width: 900px) {

  .service-block__inner,
  .service-block__inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .service-block__graphic {
    height: 280px;
  }

  .service-block__graphic .graphic-bg {
    width: 240px;
    height: 240px;
  }

  .service-block__graphic svg.svc-svg {
    width: 160px;
    height: 160px;
  }

  .service-block__content h3 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, #111928 0%, #1e3a6e 100%);
  padding: 96px 0;
  text-align: center;
}

.about-hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.about-story {
  padding: 96px 0;
}

.about-story__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-story__inner h2 {
  margin-bottom: 20px;
}

.about-story__inner .section-divider {
  margin: 0 auto 36px;
}

.about-story__inner p {
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-mv {
  padding: 96px 0;
  background: var(--bg-section);
}

.about-mv__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-mv__header h2 {
  margin-top: 12px;
}

.about-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-card);
}

.mv-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-card__icon svg {
  width: 24px;
  height: 24px;
}

.mv-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.mv-card p {
  font-size: 0.97rem;
  line-height: 1.8;
}

.about-values {
  padding: 96px 0;
}

.about-values__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-item {
  text-align: center;
  padding: 32px 24px;
}

.value-item__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-item h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-item p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .about-mv__grid {
    grid-template-columns: 1fr;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 96px 0;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h1 {
  margin-bottom: 20px;
}

.contact-info .intro {
  font-size: 1.02rem;
  margin-bottom: 48px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail-text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text span {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.contact-detail-text a:hover {
  color: var(--primary);
}

/* Form */
.contact-form-wrapper {
  background: var(--bg-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}

.contact-form-wrapper h2 {
  margin-bottom: 32px;
  font-size: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group .error-msg {
  font-size: 0.8rem;
  color: #ef4444;
  display: none;
}

.form-group .error-msg.show {
  display: block;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.form-success h3 {
  margin-bottom: 10px;
  color: #16a34a;
}

.form-success p {
  color: var(--gray-text);
}

@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

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

/* ============================================================
   STATS STRIP (used in home + about)
   ============================================================ */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-item__label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .stats-strip__grid {
    grid-template-columns: 1fr;
  }
}