/**
 * eWAY brand colors (from logo)
 * Primary:   #4400B0 — dark purple ("WAY")
 * Secondary: #9B7EDE — light purple ("e")
 */
:root {
  --eway-primary: #4400B0;
  --eway-secondary: #9B7EDE;
  --theme: var(--eway-primary);
  --action: var(--eway-primary);
  --grey: #F4EEFC;
  --border-2: #E2D4F5;
}

/* Loader */
.loader-wrap {
  background: var(--eway-primary);
}

.load-text span:nth-child(odd) {
  color: var(--eway-secondary);
}

.load-text span:nth-child(even) {
  color: var(--white);
}

/* Scroll progress */
.progress-wrap svg path {
  stroke: var(--eway-primary);
}

/* Section accents */
.section-heading .sub-heading,
.heading-2 .sub-heading,
.heading-3 .sub-heading {
  color: var(--eway-primary);
}

.section-heading .sub-heading .left-shape,
.section-heading .sub-heading .right-shape {
  background-color: var(--eway-secondary);
}

/* Primary buttons — secondary tint on hover accent */
.tb-primary-btn:hover {
  background-color: var(--eway-primary);
}

/* Hero decorative blurs */
.hero-section-6 .shapes .shape-2 {
  background: rgba(155, 126, 222, 0.12);
}

.hero-section-6 .shapes .shape-3 {
  background: rgba(68, 0, 176, 0.14);
}

/* Service / feature card title hover */
.service-title a:hover {
  color: var(--eway-primary);
}

/* Footer CTA section gradient feel */
.footer-5 .cta-section {
  background-color: var(--eway-primary);
}

/* Links */
a:hover {
  color: var(--eway-primary);
}

.footer-4-social a:hover {
  background-color: var(--eway-primary);
  border-color: var(--eway-primary);
}

/* Accordion active state */
.accordion-button:not(.collapsed) {
  background-color: var(--grey);
  color: var(--eway-primary);
}

.accordion-button:focus {
  border-color: var(--eway-secondary);
  box-shadow: 0 0 0 0.25rem rgba(155, 126, 222, 0.35);
}

/* Blog article */
.blog-article .blog-meta {
  color: var(--eway-primary);
  font-size: 15px;
}

.blog-article .blog-meta i {
  margin-right: 6px;
}

.blog-article h3 {
  margin-top: 36px;
}

.blog-article figure img {
  border-radius: 12px;
}

/* ============================================================
   Hero, blog cards, about, CTA
   ============================================================ */

/* Hero — Synvo home-9 original layout (style.css handles desktop).
   Only add: left-panel tint, overlap guard, mobile stack. */

.hero-section-6 .hero-bg-color {
  background: linear-gradient(180deg, #F4F0FA 0%, #FBFAFE 28%, rgba(255, 255, 255, 0) 100%);
}

/* Medium desktops: keep side-by-side look but shrink image so text never sits underneath */
@media (min-width: 992px) and (max-width: 1599px) {
  .hero-section-6 .bg-img {
    width: min(699px, max(460px, calc(100vw - 680px))) !important;
  }

  .hero-section-6 .hero-content-6 p {
    max-width: min(550px, calc(100vw - min(699px, max(460px, calc(100vw - 680px))) - 100px)) !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section-6 .hero-content-6 p {
    max-width: min(470px, calc(100vw - min(530px, max(420px, calc(100vw - 640px))) - 80px)) !important;
  }

  .hero-section-6 .bg-img {
    width: min(530px, max(420px, calc(100vw - 640px))) !important;
  }
}

/* Mobile / tablet: stack image below copy (theme hides image at 991px) */
@media (max-width: 991px) {
  .hero-section-6 {
    display: flex;
    flex-direction: column;
  }

  .hero-section-6 .container {
    order: 1;
    width: 100%;
  }

  .hero-section-6 .bg-img {
    display: block !important;
    position: relative !important;
    order: 2;
    width: 100% !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    height: auto !important;
    padding: 0 15px 48px;
    box-sizing: border-box;
  }

  .hero-section-6 .bg-img img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 0;
    border-bottom-left-radius: 24px;
  }

  .hero-section-6 .hero-bg-color {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .hero-section-6 .hero-content-6 .hero-btn {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-section-6 .hero-content-6 .hero-btn .tb-primary-btn,
  .hero-section-6 .hero-content-6 .hero-btn .tb-white-btn {
    text-align: center;
    justify-content: center;
  }

  .hero-section-6 .bg-img {
    padding: 0 12px 36px;
  }
}

/* --- eWAY stack cards: title → image → description → read more --- */
.eway-stack-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #EAE3F5;
  border-radius: 12px;
  padding: 28px 24px 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eway-stack-card:hover {
  border-color: var(--eway-secondary);
  box-shadow: 0 8px 32px rgba(68, 0, 176, 0.08);
}

.eway-stack-card__title {
  font-family: var(--font_inter);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: #191A1F;
  margin: 0 0 18px;
  min-height: 2.7em;
}

.eway-stack-card__title a {
  color: inherit;
  transition: color 0.3s ease;
}

.eway-stack-card__title a:hover {
  color: var(--eway-primary);
}

.eway-stack-card__media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.eway-stack-card__media a {
  display: block;
  height: 100%;
}

.eway-stack-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.eway-stack-card:hover .eway-stack-card__media img {
  transform: scale(1.03);
}

.eway-stack-card__media .cta {
  background: rgba(255, 255, 255, 0.26);
  font-family: var(--font_inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(2px);
  border-radius: 100px;
  padding: 6px 14px;
  pointer-events: none;
}

.eway-stack-card__media .cta i {
  margin-right: 4px;
}

.eway-stack-card__desc {
  flex: 1 1 auto;
  font-family: var(--font_inter);
  font-size: 16px;
  line-height: 26px;
  color: #636166;
  margin: 0 0 20px;
}

.eway-stack-card__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font_inter);
  font-weight: 600;
  font-size: 15px;
  color: var(--eway-primary);
  margin-top: auto;
}

.eway-stack-card__link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.eway-stack-card__link:hover {
  color: var(--eway-primary);
}

.eway-stack-card__link:hover i {
  transform: translateX(4px);
}

/* Override Synvo blog-6 horizontal layout */
.blog-6-section .blog-6-item.eway-stack-card {
  background: #FFFFFF;
  border: 1px solid #EAE3F5;
  border-radius: 12px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

@media (max-width: 767px) {
  .eway-stack-card__title {
    min-height: 0;
  }
}

/* Solutions / products library: align images when titles wrap */
.eway-cards-section .eway-stack-card__title {
  min-height: 3.6em;
}

@media (max-width: 767px) {
  .eway-cards-section .eway-stack-card__title {
    min-height: 0;
  }
}

.eway-cards-section--products {
  background: #F8F4FF;
  padding-top: 80px;
}

/* --- About section images --- */
.about-section-6 .about-img-6 {
  max-width: 100%;
  margin-bottom: 0;
}

.about-section-6 .about-img-6 img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .about-section-6 .about-img-6 {
    margin-bottom: 40px;
  }
}

/* --- Footer CTA: keep text readable on small screens --- */
@media (max-width: 991px) {
  .cta-section .bg-img {
    width: 100%;
    opacity: 0.25;
  }

  .cta-section .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .cta-section .cta-wrap .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}

@media (max-width: 575px) {
  .cta-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .cta-wrap .cta-btn-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-wrap .cta-btn-wrap .tb-white-btn,
  .cta-wrap .cta-btn-wrap .tb-primary-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* --- Blog article featured image --- */
.blog-article figure {
  margin: 0 0 40px;
}

.blog-article figure img {
  max-width: 100%;
  height: auto;
}

/* --- Prevent horizontal overflow from decorative elements --- */
.body-wrapper {
  overflow-x: clip;
}

/* --- Inner page header (breadcrumbs, no hero image) --- */
.eway-page-header {
  margin-top: 120px;
  padding: 32px 0 48px;
  background: linear-gradient(180deg, #F4F0FA 0%, #FBFAFE 100%);
  border-bottom: 1px solid #EAE3F5;
}

@media (max-width: 991px) {
  .eway-page-header {
    margin-top: 88px;
    padding: 24px 0 36px;
  }
}

.eway-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-family: var(--font_inter);
  font-size: 14px;
  line-height: 1.4;
}

.eway-breadcrumb li {
  color: #636166;
}

.eway-breadcrumb li + li::before {
  content: "/";
  margin: 0 10px;
  color: var(--eway-secondary);
}

.eway-breadcrumb a {
  color: var(--eway-primary);
  transition: color 0.3s ease;
}

.eway-breadcrumb a:hover {
  color: var(--eway-primary);
}

.eway-breadcrumb [aria-current="page"] {
  color: #191A1F;
  font-weight: 500;
}

.eway-page-header__title {
  font-family: var(--font_inter);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #191A1F;
  margin: 0;
  max-width: 920px;
}

.eway-page-header__lead {
  font-family: var(--font_inter);
  font-size: 18px;
  line-height: 1.6;
  color: #636166;
  margin: 16px 0 0;
  max-width: 720px;
}

/* --- Detail pages (services & products) --- */
.eway-detail-intro {
  padding: 64px 0 72px;
}

.eway-detail-intro .section-title {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 16px;
}

.eway-detail-lead {
  font-size: 17px;
  line-height: 1.65;
  color: #636166;
  margin-bottom: 28px;
}

.eway-detail-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(68, 0, 176, 0.12);
}

.eway-detail-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eway-detail-panels {
  padding-bottom: 72px;
}

.eway-detail-panel {
  height: 100%;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid #EAE3F5;
  background: #FFFFFF;
}

.eway-detail-panel--challenge {
  background: linear-gradient(135deg, #FFF 0%, #FDF9FF 100%);
}

.eway-detail-panel--solution {
  background: linear-gradient(135deg, #FFF 0%, #F4F0FA 100%);
  border-color: #E2D4F5;
}

.eway-detail-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--eway-primary);
  color: #fff;
  font-size: 20px;
  margin-bottom: 18px;
}

.eway-detail-panel--challenge .eway-detail-panel__icon {
  background: #636166;
}

.eway-detail-panel h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #191A1F;
}

.eway-detail-panel p {
  font-size: 16px;
  line-height: 1.65;
  color: #636166;
  margin: 0;
}

.eway-detail-approach {
  margin-top: 24px;
  padding: 32px 36px;
  border-radius: 12px;
  background: #F8F4FF;
  border: 1px solid #EAE3F5;
}

.eway-detail-approach h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--eway-primary);
}

.eway-detail-approach p {
  font-size: 16px;
  line-height: 1.65;
  color: #636166;
  margin: 0;
}

.eway-feature-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid #EAE3F5;
  background: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eway-feature-card:hover {
  border-color: var(--eway-secondary);
  box-shadow: 0 8px 28px rgba(68, 0, 176, 0.08);
}

.eway-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(68, 0, 176, 0.08);
  color: var(--eway-primary);
  font-size: 18px;
  margin-bottom: 16px;
}

.eway-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #191A1F;
}

.eway-feature-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #636166;
  margin: 0;
}

.eway-detail-outcomes {
  background: #F8F4FF;
  padding: 80px 0;
}

.eway-outcome-card {
  height: 100%;
  padding: 24px 22px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid #EAE3F5;
  text-align: center;
}

.eway-outcome-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--eway-primary);
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}

.eway-outcome-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #636166;
  margin: 0;
  font-weight: 500;
}

.eway-detail-process {
  padding-bottom: 80px;
}

.eway-process-step {
  position: relative;
  padding: 28px 24px 28px 72px;
  border-radius: 12px;
  border: 1px solid #EAE3F5;
  background: #FFFFFF;
  height: 100%;
}

.eway-process-step__num {
  position: absolute;
  left: 24px;
  top: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--eway-secondary);
  font-family: var(--font_inter);
}

.eway-process-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #191A1F;
}

.eway-process-step p {
  font-size: 15px;
  line-height: 1.55;
  color: #636166;
  margin: 0;
}

.eway-detail-related {
  padding-bottom: 80px;
}

.eway-related-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #EAE3F5;
  background: #FFFFFF;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eway-related-card:hover {
  border-color: var(--eway-secondary);
  box-shadow: 0 6px 24px rgba(68, 0, 176, 0.08);
}

.eway-related-card__thumb {
  flex-shrink: 0;
  width: 88px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}

.eway-related-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eway-related-card__body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.eway-related-card__body h4 a {
  color: #191A1F;
}

.eway-related-card__body h4 a:hover {
  color: var(--eway-primary);
}

.eway-related-card__body p {
  font-size: 14px;
  line-height: 1.45;
  color: #636166;
  margin: 0 0 8px;
}

.eway-related-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--eway-primary);
}

.eway-detail-sidebar-cta {
  padding: 28px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--eway-primary) 0%, #5a1fd4 100%);
  color: #fff;
  position: sticky;
  top: 120px;
}

.eway-detail-sidebar-cta h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.eway-detail-sidebar-cta p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: 20px;
}

.eway-detail-sidebar-cta .tb-white-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .eway-detail-intro {
    padding: 48px 0 56px;
  }

  .eway-detail-sidebar-cta {
    position: static;
    margin-top: 32px;
  }
}

/* First section after page header needs less top padding */
.eway-page-header + section.pt-120 {
  padding-top: 80px !important;
}

@media (max-width: 767px) {
  .eway-page-header__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .eway-page-header + section.pt-120 {
    padding-top: 60px !important;
  }
}

/* --- Section headings scale down on mobile --- */
@media (max-width: 767px) {
  .section-heading .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}

/* --- Industries page --- */
.eway-industries-intro__text {
  font-size: 17px;
  line-height: 1.65;
  color: #636166;
  margin: 0;
}

.eway-industry-card {
  display: flex;
  gap: 24px;
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid #EAE3F5;
  background: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eway-industry-card:hover {
  border-color: var(--eway-secondary);
  box-shadow: 0 12px 36px rgba(68, 0, 176, 0.1);
}

.eway-industry-card__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(68, 0, 176, 0.12) 0%, rgba(122, 49, 223, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eway-primary);
  font-size: 28px;
}

.eway-industry-card__body {
  flex: 1;
  min-width: 0;
}

.eway-industry-card__title {
  font-size: 22px;
  font-weight: 600;
  color: #191A1F;
  margin-bottom: 10px;
}

.eway-industry-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #636166;
  margin-bottom: 16px;
}

.eway-industry-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.eway-industry-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4f;
  margin-bottom: 8px;
}

.eway-industry-card__list li i {
  color: var(--eway-primary);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.eway-industry-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--eway-primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.eway-industry-card__link:hover {
  gap: 12px;
  color: var(--eway-secondary);
}

@media (max-width: 575px) {
  .eway-industry-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .eway-industry-card__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* About page — mission/vision/values icon sizing */
.about-content-6 .about-item .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.eway-about-mvv {
  background: #F8F4FF;
  padding-top: 80px;
}

.eway-about-mvv-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #EAE3F5;
  text-align: center;
  height: 100%;
}

.eway-about-mvv-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #EDEEF6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eway-about-mvv-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.eway-about-mvv-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #191A1F;
  margin-bottom: 12px;
}

.eway-about-mvv-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #636166;
  margin: 0;
}

/* --- Contact page --- */
.eway-contact-section {
  background: #FFFFFF;
}

.eway-contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.5;
}

.eway-contact-alert i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 18px;
}

.eway-contact-alert--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.eway-contact-alert--success i { color: #059669; }

.eway-contact-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.eway-contact-alert--error i { color: #dc2626; }

.eway-contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #EAE3F5;
}

.eway-contact-info-card:last-of-type {
  border-bottom: none;
}

.eway-contact-info-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(68, 0, 176, 0.08);
  color: var(--eway-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.eway-contact-info-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #191A1F;
  margin-bottom: 6px;
}

.eway-contact-info-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #636166;
  margin: 0;
}

.eway-contact-info-card a {
  color: var(--eway-primary);
  text-decoration: none;
}

.eway-contact-info-card a:hover {
  text-decoration: underline;
}

.eway-contact-trust {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #EAE3F5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eway-contact-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #636166;
}

.eway-contact-trust__item i {
  color: var(--eway-primary);
  width: 18px;
  text-align: center;
}

.eway-contact-form-card {
  background: linear-gradient(145deg, #4400B0 0%, #5a1fc7 50%, #7A31DF 100%);
  border-radius: 20px;
  padding: 36px 32px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(68, 0, 176, 0.25);
}

.eway-contact-form-card__header {
  margin-bottom: 28px;
}

.eway-contact-form-card__header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.eway-contact-form-card__header p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.eway-contact-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
}

.eway-contact-form__field {
  position: relative;
}

.eway-contact-form__field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}

.eway-contact-form__field--textarea i {
  top: 18px;
  transform: none;
}

.eway-contact-form__field input,
.eway-contact-form__field textarea {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 14px 16px 14px 44px;
  font-size: 15px;
  line-height: 1.4;
  color: #191A1F;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.eway-contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
  padding-top: 14px;
}

.eway-contact-form__field input:focus,
.eway-contact-form__field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.eway-contact-form__field input::placeholder,
.eway-contact-form__field textarea::placeholder {
  color: #9ca3af;
}

.eway-contact-form .tb-primary-btn {
  margin-top: 4px;
  background: #fff;
  color: var(--eway-primary);
  border: none;
}

.eway-contact-form .tb-primary-btn:hover {
  background: #f8f4ff;
  color: var(--eway-primary);
}

.eway-contact-map__frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #EAE3F5;
  box-shadow: 0 8px 32px rgba(68, 0, 176, 0.08);
}

@media (max-width: 991px) {
  .eway-contact-form-card {
    margin-top: 8px;
  }
}

@media (max-width: 575px) {
  .eway-contact-form-card {
    padding: 28px 20px;
  }

  .eway-contact-form-card__header h3 {
    font-size: 22px;
  }
}
