/* ═══════════════════════════════════════════════
   GPM.CSS — Global Performance Management
   Styles partagés entre toutes les pages
═══════════════════════════════════════════════ */

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

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162435;
  --navy-light: #1E3452;
  --gold:       #C8A96E;
  --gold-light: #DFC18E;
  --gold-dark:  #A07C3E;
  --cream:      #F9F7F3;
  --cream-dark: #EDE9E1;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #F3F4F6;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg:  0 16px 48px rgba(13,27,42,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--navy); line-height: 1.7; overflow-x: hidden; }
p { line-height: 1.75; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem; height: 70px;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 36px; height: 36px; background: var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy); font-weight: 700; flex-shrink: 0; }
.nav-logo-text { font-size: 13px; font-weight: 500; color: var(--cream); letter-spacing: 0.02em; line-height: 1.3; }
.nav-logo-text span { display: block; font-size: 10px; font-weight: 300; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: rgba(249,247,243,0.8); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 9px 20px; background: var(--gold); color: var(--navy); border: none; border-radius: var(--radius); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── NAV DROPDOWN ── */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-links .has-dropdown > a .caret { font-size: 9px; transition: transform 0.2s; display: inline-block; }
.nav-links .has-dropdown:hover > a .caret { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-lg);
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--navy);
  border-left: 1px solid rgba(200,169,110,0.18);
  border-top: 1px solid rgba(200,169,110,0.18);
  transform: translateX(-50%) rotate(45deg);
}
.nav-links .has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.65rem 1.25rem;
  font-size: 13px;
  color: rgba(249,247,243,0.75);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-radius: 0;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover, .nav-dropdown a.active { color: var(--gold); background: rgba(200,169,110,0.07); }
.nav-dropdown .drop-icon { font-size: 15px; width: 20px; text-align: center; }
.nav-dropdown li:first-child a { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.nav-dropdown li:last-child a { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.nav-dropdown .drop-divider { height: 1px; background: rgba(200,169,110,0.1); margin: 0.3rem 0; }

/* ── PAGE HERO (bannière intérieure) ── */
.page-hero { height: 420px; position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 70px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.62) 55%, rgba(13,27,42,0.32) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 3.5rem; width: 100%; }
.page-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
.page-hero-title em { font-style: normal; color: var(--gold); }
.page-hero-sub { font-size: 16px; font-weight: 300; color: rgba(249,247,243,0.75); max-width: 540px; line-height: 1.75; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--navy-mid); padding: 0.7rem 3.5rem; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 0.5rem; align-items: center; font-size: 12px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: rgba(249,247,243,0.3); }
.breadcrumb .current { color: rgba(249,247,243,0.6); }

/* ── SECTIONS ── */
.section { padding: 5rem 3.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--navy); }
.section-light { background: var(--cream); }
.section-white { background: var(--white); }
.section-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.6rem; }
.section-dark .section-eyebrow { color: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-dark .section-title { color: var(--cream); }
.section-title em { font-style: normal; color: var(--gold-dark); }
.section-dark .section-title em { color: var(--gold); }
.section-subtitle { font-size: 15px; color: var(--gray); max-width: 520px; margin-bottom: 3rem; line-height: 1.75; }
.section-dark .section-subtitle { color: rgba(249,247,243,0.6); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── BOUTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--gold); color: var(--navy); border: none; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; font-family: 'Inter', sans-serif; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--navy); color: var(--cream); border: none; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; font-family: 'Inter', sans-serif; }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; background: transparent; color: var(--navy); border: 1.5px solid var(--navy); border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.2s, color 0.2s; font-family: 'Inter', sans-serif; }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-ghost-light { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; background: transparent; color: var(--cream); border: 1px solid rgba(249,247,243,0.35); border-radius: var(--radius); font-size: 14px; font-weight: 400; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; font-family: 'Inter', sans-serif; }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-row.center { justify-content: center; }

/* ── GRILLES ── */
.grid-auto   { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── CARTES ── */
.card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(13,27,42,0.08); padding: 1.75rem 1.5rem; transition: transform 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-dark { background: rgba(249,247,243,0.04); border: 1px solid rgba(200,169,110,0.15); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; transition: border-color 0.25s, background 0.25s; }
.card-dark:hover { border-color: rgba(200,169,110,0.42); background: rgba(249,247,243,0.07); }
.card-icon { width: 48px; height: 48px; background: rgba(200,169,110,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }
.card-icon-dark { width: 48px; height: 48px; background: rgba(200,169,110,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }
.card-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.card-dark .card-title { color: var(--cream); }
.card-text { font-size: 13px; color: var(--gray); line-height: 1.7; }
.card-dark .card-text { color: rgba(249,247,243,0.6); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.pricing-card { background: var(--white); border: 1.5px solid rgba(13,27,42,0.1); border-radius: var(--radius-lg); padding: 2rem 1.75rem; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border: 2px solid var(--gold); }
.pricing-badge-top { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.pricing-for { font-size: 12px; color: var(--gray); font-style: italic; padding: 7px 12px; background: var(--gray-light); border-radius: var(--radius); margin-bottom: 1.25rem; line-height: 1.5; }
.pricing-divider { border: none; border-top: 1px solid rgba(13,27,42,0.07); margin: 1.25rem 0; }
.pricing-features { list-style: none; margin-bottom: 1.75rem; }
.pricing-features li { font-size: 13px; color: #374151; padding: 5px 0; display: flex; align-items: flex-start; gap: 9px; line-height: 1.55; }
.pricing-features li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-duration { font-size: 12px; color: var(--gray); margin-bottom: 1.5rem; }
.pricing-duration strong { color: var(--navy); }

/* ── ÉTAPES / PROCESS ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.step-body p  { font-size: 13px; color: var(--gray); line-height: 1.65; }
.steps-dark .step-body h4 { color: var(--cream); }
.steps-dark .step-body p  { color: rgba(249,247,243,0.6); }

/* ── ACCORDÉON FAQ ── */
.faq-item { border-bottom: 1px solid rgba(13,27,42,0.08); }
.faq-q { width: 100%; background: none; border: none; padding: 1.1rem 0; text-align: left; font-size: 15px; font-weight: 500; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'Inter', sans-serif; }
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { font-size: 22px; color: var(--gold-dark); flex-shrink: 0; transition: transform 0.25s; }
.faq-a { font-size: 14px; color: var(--gray); line-height: 1.75; padding-bottom: 1.1rem; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── TÉMOIGNAGES ── */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid rgba(13,27,42,0.07); }
.testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 14px; color: #374151; line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-initials { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.testimonial-role { font-size: 12px; color: var(--gray); }

/* ── DEUX COLONNES CONTENU + IMAGE ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-img { border-radius: var(--radius-lg); overflow: hidden; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── ÉQUIPE ── */
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(13,27,42,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.team-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.team-card-name { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; font-family: 'Playfair Display', serif; }
.team-card-role { font-size: 11px; color: var(--gold-dark); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.7rem; }
.team-card-bio { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ── BLOG CARDS ── */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(13,27,42,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background-size: cover; background-position: center; }
.blog-card-body { padding: 1.4rem; }
.blog-card-cat { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 0.6rem; }
.blog-card-excerpt { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.blog-card-meta { font-size: 11px; color: #9CA3AF; margin-bottom: 0.75rem; }
.blog-read-link { font-size: 13px; font-weight: 600; color: var(--gold-dark); text-decoration: none; }
.blog-read-link:hover { text-decoration: underline; }

/* ── BADGES ── */
.badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.badge-blue   { background: #dbeafe; color: #1e40af; }
.badge-green  { background: #d1fae5; color: #065f46; }
.badge-purple { background: #ede9fe; color: #4c1d95; }
.badge-amber  { background: #fef3c7; color: #92400e; }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold); padding: 3.5rem 3.5rem; }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 13px; font-weight: 500; color: rgba(13,27,42,0.7); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 5rem 3.5rem; text-align: center; }
.cta-banner-inner { max-width: 660px; margin: 0 auto; }
.cta-banner-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; line-height: 1.2; }
.cta-banner-title em { font-style: normal; color: var(--gold); }
.cta-banner-sub { font-size: 15px; color: rgba(249,247,243,0.65); margin-bottom: 2rem; line-height: 1.75; }

/* ── FORMULAIRE ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(13,27,42,0.15); border-radius: var(--radius); font-size: 14px; font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: #9CA3AF; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray); margin-top: 0.25rem; }
.form-check input { margin-top: 3px; accent-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── NEWSLETTER ── */
.newsletter-form { display: flex; gap: 10px; max-width: 420px; }
.newsletter-form input { flex: 1; padding: 11px 14px; border: 1.5px solid rgba(13,27,42,0.15); border-radius: var(--radius); font-size: 14px; font-family: 'Inter', sans-serif; outline: none; }
.newsletter-form input:focus { border-color: var(--gold); }

/* ── FOOTER ── */
footer { background: #07111C; padding: 3.5rem 3.5rem 2rem; border-top: 1px solid rgba(200,169,110,0.12); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; }
.footer-brand p { font-size: 13px; color: rgba(249,247,243,0.45); line-height: 1.8; max-width: 280px; margin-top: 1rem; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 13px; color: rgba(249,247,243,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(249,247,243,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(249,247,243,0.3); }

/* ── UTILITAIRES ── */
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }  .mt-3 { margin-top: 1.5rem; }  .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .section { padding: 3.5rem 1.25rem; }
  .page-hero-content { padding: 0 1.25rem; }
  .breadcrumb { padding: 0.7rem 1.25rem; }
  .stats-bar { padding: 3rem 1.25rem; }
  .cta-banner { padding: 3.5rem 1.25rem; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* ── SOCIAL ICONS ── */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(249,247,243,0.1);
  color: rgba(249,247,243,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  background: #C8A96E;
  color: #0D1B2A;
  transform: translateY(-2px);
}
.social-whatsapp:hover {
  background: #25D366;
  color: #fff;
}
