/* ============================================================
   ETHIX MARKETING — service.css
   Shared styles for all 4 service pages.
   Prefix: esv- (ethix service)
   Depends on: style.css + contact.css
============================================================ */

/* ============================
   BREADCRUMB (reuses ec- from contact.css)
   No overrides needed — contact.css already handles it.
============================ */

/* ============================
   SERVICE DETAIL SECTION
============================ */
.esv-detail {
  padding: 90px 0 100px;
  background: var(--em-white);
}

/* ============================
   LEFT IMAGE BLOCK
============================ */
.esv-img-block {
  position: relative;
  padding: 16px;
}

.esv-img-inner {
  border-radius: var(--em-radius-lg);
  overflow: visible;
  position: relative;
}

/* Base graphic container */
.esv-img-graphic {
  background: var(--em-light);
  border-radius: var(--em-radius-lg);
  border: 1.5px solid var(--em-border);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Background pattern overlay */
.esv-img-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23e8e4de'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

/* Colour variants */
.esv-graphic-blue  { background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%); border-color: #d0e2ff; }
.esv-graphic-dark  { background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%); border-color: #ddd; }
.esv-graphic-orange { background: linear-gradient(135deg, #fff7f0 0%, #fff0e6 100%); border-color: #ffd6b8; }
.esv-graphic-green { background: linear-gradient(135deg, #f0faf4 0%, #e8f5ee 100%); border-color: #c3e6d0; }

/* Large centre icon */
.esv-graphic-icon {
  width: 100px;
  height: 100px;
  background: var(--em-white);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--em-orange-mid);
  box-shadow: 0 8px 36px rgba(255, 90, 0, 0.15);
  border: 1.5px solid rgba(255, 90, 0, 0.12);
  z-index: 2;
  position: relative;
  animation: esv-breathe 3s ease-in-out infinite;
}

.esv-graphic-blue  .esv-graphic-icon { color: #3b82f6; box-shadow: 0 8px 36px rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.12); }
.esv-graphic-dark  .esv-graphic-icon { color: #555; box-shadow: 0 8px 36px rgba(0,0,0,0.10); border-color: rgba(0,0,0,0.08); }
.esv-graphic-green .esv-graphic-icon { color: #16a34a; box-shadow: 0 8px 36px rgba(22,163,74,0.12); border-color: rgba(22,163,74,0.10); }

@keyframes esv-breathe {
  0%, 100% { transform: scale(1);    box-shadow: 0 8px 36px rgba(255,90,0,0.15); }
  50%       { transform: scale(1.04); box-shadow: 0 12px 48px rgba(255,90,0,0.22); }
}

/* Floating stat pills */
.esv-stat-pill {
  position: absolute;
  background: var(--em-white);
  border: 1.5px solid var(--em-border);
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 3;
  white-space: nowrap;
}

.esv-stat-pill i {
  font-size: 16px;
  background: var(--em-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.esv-stat-pill strong {
  display: block;
  font-family: var(--em-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--em-dark);
  line-height: 1;
}

.esv-stat-pill span {
  display: block;
  font-size: 11px;
  color: var(--em-gray2);
  margin-top: 2px;
}

.esv-pill-1 {
  top: 24px;
  right: -16px;
  animation: esv-float 3.5s ease-in-out infinite;
}

.esv-pill-2 {
  bottom: 28px;
  left: -16px;
  animation: esv-float 3.5s ease-in-out infinite 1.75s;
}

@keyframes esv-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* Orange badge bottom-right */
.esv-img-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--em-gradient);
  color: #fff;
  border-radius: var(--em-radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(255, 90, 0, 0.3);
  z-index: 4;
}

.esv-badge-num {
  display: block;
  font-family: var(--em-font-head);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.esv-badge-txt {
  font-size: 11px;
  opacity: 0.88;
  line-height: 1.4;
  margin-top: 3px;
  display: block;
}

/* ============================
   RIGHT CONTENT COLUMN
============================ */
.esv-content {
  padding-left: 12px;
}

.esv-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--em-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--em-orange-mid);
  background: rgba(255, 90, 0, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.esv-title {
  font-family: var(--em-font-head);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--em-dark);
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.esv-body {
  font-size: 15.5px;
  color: var(--em-gray);
  line-height: 1.78;
  margin-bottom: 14px;
}

/* Highlights list */
.esv-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.esv-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.esv-hi-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--em-orange-mid);
  flex-shrink: 0;
  margin-top: 1px;
}

.esv-highlight-item strong {
  display: block;
  font-family: var(--em-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--em-dark);
  margin-bottom: 3px;
}

.esv-highlight-item span {
  font-size: 13.5px;
  color: var(--em-gray);
  line-height: 1.6;
}

/* Tag pills */
.esv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.esv-tags span {
  font-family: var(--em-font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--em-dark);
  background: var(--em-light);
  border: 1.5px solid var(--em-border);
  border-radius: 50px;
  padding: 5px 14px;
  transition: all 0.2s;
}

.esv-tags span:hover {
  border-color: var(--em-orange-mid);
  color: var(--em-orange-mid);
  background: rgba(255, 90, 0, 0.05);
}

/* ============================
   CONTACT FORM SECTION
============================ */
.esv-contact-section {
  padding: 90px 0 100px;
  background: var(--em-light);
}

.esv-form-heading {
  font-family: var(--em-font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--em-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.esv-form-sub {
  font-size: 15.5px;
  color: var(--em-gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
  .esv-pill-1 { right: 0; top: 14px; }
  .esv-pill-2 { left: 0; bottom: 18px; }
  .esv-content { padding-left: 0; padding-top: 32px; }
}

@media (max-width: 768px) {
  .esv-detail { padding: 60px 0 70px; }
  .esv-contact-section { padding: 60px 0 70px; }
  .esv-img-graphic { min-height: 280px; }
  .esv-stat-pill { display: none; }
  .esv-img-badge { bottom: -12px; right: 12px; }
}