/* Thème clair premium IEC elec - fond dégradé gris, bleu, encadrés arrondis */

:root {
  --bg-top: #f5f6f8;
  --bg-bottom: #e5e7eb;
  --bg-surface: #ffffff;
  --bg-soft: #f9fafb;
  --border-subtle: #e5e7eb;
  --border-strong: #cbd5f5;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.06);
  --accent-yellow: #facc15;
  --danger: #dc2626;
  --success: #16a34a;
  --radius-lg: 1.1rem;
  --radius-xl: 1.6rem;
  --shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom));
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */

header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
  position: relative;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-vignette {
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.3rem 0.5rem;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-text-main {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: #111827;
}

.logo-text-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.logo-slogan {
  font-size: 0.8rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-block: 0.25rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-yellow));
  transition: width var(--transition-med);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  background: linear-gradient(to right, var(--accent-soft), rgba(248, 250, 252, 0.98));
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  box-shadow: 0 0 0 rgba(37, 99, 235, 0);
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35);
  background: linear-gradient(to right, rgba(219, 234, 254, 0.9), rgba(248, 250, 252, 0.98));
}

.nav-cta span {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #111827;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero */

.hero {
  padding: 2.4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0, #16a34a 45%, #15803d 100%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.badge-strong {
  color: #111827;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

.hero-highlight {
  background: linear-gradient(to right, var(--accent), var(--accent-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.hero-subsubtitle {
  font-size: 0.87rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn {
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(to right, var(--accent), #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.55);
}

.btn-outline {
  border-color: var(--border-strong);
  background: #ffffff;
  color: #111827;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-contact strong {
  color: #111827;
}

/* Hero visuel */

.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: linear-gradient(to bottom right, #e5edff, #fefce8);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-inner {
  border-radius: calc(var(--radius-xl) - 8px);
  background: #ffffff;
  padding: 1.1rem 1.3rem 1.2rem;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}

.hero-spark {
  position: absolute;
  right: -25px;
  top: -20px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.6), transparent 60%);
  filter: blur(6px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: #1f2937;
  margin-bottom: 0.9rem;
}

.hero-status-pill {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.07);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.4);
  font-size: 0.7rem;
}

.hero-meter {
  margin-top: 0.7rem;
  padding: 0.65rem;
  border-radius: 0.9rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.8rem;
}

.hero-meter-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 25% 0%, var(--accent-yellow), #f97316 55%, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.4);
}

.hero-meter-bar {
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.3rem;
}

.hero-meter-fill {
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: linear-gradient(90deg, #22c55e, var(--accent-yellow), var(--accent));
  transform: scaleX(0.94);
}

.hero-meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hero-info-tags {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-info-tags span {
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-muted);
}

.hero-contact-card {
  margin-top: 0.8rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  background: #f9fafb;
  border: 1px dashed var(--border-subtle);
  font-size: 0.8rem;
  display: grid;
  gap: 0.1rem;
}

.hero-chip {
  position: absolute;
  bottom: 1rem;
  right: 1.1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.35);
}

.hero-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0, #15803d 70%, transparent 100%);
}

/* Sections */

section {
  padding-block: 2.8rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-title {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 26rem;
}

/* Cartes / encadrés premium */

.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  border-color: var(--accent);
}

/* Services */

#services-page,
#services-section {
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.9), rgba(243, 244, 246, 0.9));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  composes: card;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.22);
  background: #ffffff;
}

.service-card:hover::before {
  opacity: 1;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-emoji {
  font-size: 0.95rem;
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.service-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.service-meta {
  font-size: 0.75rem;
  color: #4b5563;
}

/* Réalisations (page en construction donc seulement styles généraux utilisés ailleurs) */

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.real-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.55rem;
  font-size: 0.84rem;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.real-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
  border-color: var(--accent);
}

.real-thumb {
  border-radius: 0.9rem;
  height: 120px;
  background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.18), rgba(248, 250, 252, 1));
  position: relative;
  overflow: hidden;
}

.real-thumb::before,
.real-thumb::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(241, 245, 249, 0.9));
  inset: 12%;
  transform: rotate(-3deg);
}

.real-thumb::after {
  inset: 24%;
  transform: rotate(4deg);
  border-color: rgba(148, 163, 184, 0.9);
}

.real-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.real-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Avis */

#avis-page,
#avis-section {
  background: linear-gradient(to bottom, #eff6ff, #f9fafb);
}

.avis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.avis-list {
  display: grid;
  gap: 0.9rem;
}

.avis-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 0.95rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 0.84rem;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.avis-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  border-color: var(--accent);
}

.avis-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
  gap: 0.8rem;
}

.avis-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.avis-stars {
  font-size: 0.82rem;
  color: #eab308;
  white-space: nowrap;
}

.avis-text {
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.avis-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}

.avis-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.avis-form {
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 0.84rem;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.avis-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
  border-color: var(--accent);
}

/* Contact */

#contact-page {
  border-top: 1px solid var(--border-subtle);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: 1.5rem;
}

.contact-card,
.contact-form {
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.contact-card:hover,
.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.19);
  border-color: var(--accent);
}

.contact-details {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  margin-bottom: 0.7rem;
}

.contact-details span {
  color: var(--text-muted);
}

.contact-details strong {
  color: #111827;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Form fields */

.field {
  margin-bottom: 0.6rem;
  display: grid;
  gap: 0.25rem;
}

.field label {
  font-size: 0.8rem;
  color: #374151;
}

.field input,
.field textarea,
.field select {
  font: inherit;
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: #111827;
  padding: 0.45rem 0.6rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.field textarea {
  min-height: 80px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
  transform: translateY(-0.5px);
}

.form-helper {
  font-size: 0.74rem;
  color: #9ca3af;
}

.form-message {
  font-size: 0.8rem;
  margin-top: 0.45rem;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

/* Footer */

footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1rem 0 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  background: rgba(249, 250, 251, 0.9);
  backdrop-filter: blur(8px);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Pages "titre" */

.page-header {
  padding: 2.4rem 0 1.2rem;
}

.page-title-block {
  max-width: 620px;
}

.page-title {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.page-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Animations / reveal */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .avis-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .services-grid,
  .realisations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #ffffff;
    padding: 0.6rem 1.25rem 0.9rem;
    display: none;
    flex-direction: column;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .services-grid,
  .realisations-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.4rem, 480px);
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .logo-img {
    height: 40px;
  }
}

/* Modale services (fond clair élégant) */
.service-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.service-modal-backdrop.open {
  display: flex;
}

.service-modal {
  background: #ffffff;
  border-radius: 1.2rem;
  max-width: 480px;
  width: 100%;
  padding: 1.2rem 1.4rem 1.3rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  position: relative;
  animation: serviceModalIn 0.28s ease-out;
}

.service-modal h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.service-modal p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.service-modal ul {
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

.service-modal li {
  margin-bottom: 0.25rem;
  list-style: disc;
}

.service-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: none;
  background: rgba(243, 244, 246, 0.9);
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: #4b5563;
  transition: background 0.18s ease-out, transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.service-modal-close:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

@keyframes serviceModalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
