/* ML Escalade-Coaching - OceanWP Theme Style */

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

:root {
    --ocean-primary: #13aff0;
    --ocean-dark: #1a1a1a;
    --ocean-text: #555555;
    --ocean-heading: #333333;
    --ocean-light: #f8f9fa;
    --ocean-border: #e9e9e9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--ocean-text);
    font-size: 15px;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: var(--ocean-dark);
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--ocean-primary);
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    background: rgba(255,255,255,0.1);
}

.top-bar-social a:hover {
    background: var(--ocean-primary);
    transform: translateY(-2px);
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid var(--ocean-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: var(--ocean-heading);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 28px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--ocean-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--ocean-primary);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--ocean-heading);
}

/* Hero Section */
.hero {
  position: relative;
  height: 700px;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
              url('1000001433.jpg') center 10% / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}


.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

.hero h1 {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* === HERO SECTION FOR COACHING EN LIGNE === */
.hero-coaching {
  position: relative;
  height: 600px;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
              url('1000000060.jpg') center 60% / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-coaching h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-coaching p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Mobile fallback for performance --- */
@media (max-width: 768px) {
  .hero-coaching {
    background-attachment: scroll;
    background-position: center 40%;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
              url('1000000103_4.jpg') center 10% / cover no-repeat; /* 60% = image a bit lower */
  color: white;
  padding: 120px 0;
  text-align: center;

  /* parallax effect */
  background-attachment: fixed;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    font-weight: 300;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Styling */
section {
    padding: 90px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--ocean-heading);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--ocean-text);
    margin-bottom: 50px;
    font-weight: 300;
}

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

/* About Section */
.about {
    background: #fff;
}

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

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.9;
}

.about-content strong {
    color: var(--ocean-heading);
    font-weight: 600;
}

/* REMPLACER PAR CECI */
/* REMPLACEZ VOTRE BLOC .about-image img PAR CECI */
/* --- Correction de l'image de profil pour Mobile --- */
.about-image {
    height: auto !important; /* Libère le cadre */
}

.about-image img {
    width: 100% !important;
    height: auto !important;   /* Indispensable pour garder les proportions réelles */
    aspect-ratio: 4 / 5;       /* Définit une forme rectangulaire élégante pour mobile */
    object-fit: cover;         /* Remplit le cadre en rognant les bords proprement */
    display: block;
}

.image-section {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Garde l'effet sur ordinateur */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AJOUTEZ CECI JUSTE APRÈS pour corriger le mobile */
@media (max-width: 768px) {
    /* Désactive l'effet parallaxe qui casse le rendu sur mobile */
    .hero, .hero-coaching, .page-header, .image-section {
        background-attachment: scroll !important; 
        background-position: center center !important;
        height: 400px !important; /* Donne une hauteur fixe raisonnable pour mobile */
    }
}

.image-overlay-text {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
    line-height: 1.4;
}

/* Professional Path */
.professional-path {
    background: var(--ocean-light);
}

.path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.path-card {
    background: #fff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--ocean-primary);
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.path-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.path-card h3 {
    font-size: 22px;
    color: var(--ocean-heading);
    margin-bottom: 18px;
    font-weight: 600;
}

.path-card p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

/* Experience */
.experience {
    background: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.experience-card {
    background: var(--ocean-light);
    padding: 40px 35px;
    border-radius: 8px;
    transition: all 0.4s ease;
    border-left: 4px solid var(--ocean-primary);
}

.experience-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.experience-card h3 {
    color: var(--ocean-primary);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-card p {
    font-size: 15px;
    line-height: 1.8;
}

.experience-card ul {
    margin-top: 15px;
    margin-left: 20px;
}

.experience-card li {
    margin-bottom: 8px;
}

/* Stats */
.stats {
    background: var(--ocean-dark);
    color: #fff;
    text-align: center;
}

.stats .section-title,
.stats .section-subtitle {
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--ocean-primary);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 500;
}

/* Coaching Features */
.coaching-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--ocean-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--ocean-primary);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--ocean-heading);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--ocean-primary);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.service-image {
    width: 80px;
    height: 80px;
    background: var(--ocean-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--ocean-primary);
}

.service-card h3 {
    font-size: 22px;
    color: var(--ocean-heading);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card ul {
    margin-left: 20px;
}

.service-card li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--ocean-primary), #0d8cc9);
    padding: 80px 0;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--ocean-primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* Contact Page */
.contact-page {
    background: var(--ocean-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-box {
    background: #fff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: fit-content;
}

.contact-info-box h2 {
    font-size: 28px;
    color: var(--ocean-heading);
    margin-bottom: 20px;
}

.contact-info-box > p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--ocean-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--ocean-primary);
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 16px;
    color: var(--ocean-heading);
    margin-bottom: 5px;
}

.contact-detail-item a {
    color: var(--ocean-text);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links-large h3 {
    font-size: 20px;
    color: var(--ocean-heading);
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Contact Form */
.contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form-box h2 {
    font-size: 28px;
    color: var(--ocean-heading);
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--ocean-heading);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--ocean-border);
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-primary);
}

.form-group textarea {
    resize: vertical;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background: var(--ocean-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--ocean-primary);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--ocean-heading);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.8;
}

/* Content Sections */
.content-section {
    background: #fff;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.info-section {
    background: var(--ocean-light);
}

.experience-section {
    background: #fff;
}

/* --- Nouveau Style Footer Linéaire --- */
footer {
    background: #0a0a0a;
    color: #999;
    padding: 12px 0; /* Réduit l'épaisseur au minimum */
    font-size: 13px;
    border-top: 1px solid #222;
}

.footer-row {
    display: flex;
    justify-content: center; /* Centre l'ensemble sur la ligne */
    align-items: center;
    gap: 15px; /* Espace entre les blocs */
    flex-wrap: wrap; /* Permet de s'adapter aux petits écrans */
}

.footer-contact a, 
.footer-social-inline a {
    color: var(--ocean-primary); /* Utilise votre bleu #13aff0 */
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact a:hover, 
.footer-social-inline a:hover {
    opacity: 0.8;
}

.footer-sep {
    color: #444;
    margin: 0 5px;
}

.footer-social-inline i {
    font-size: 16px;
    margin-left: 10px;
}

/* --- Ajustement Mobile (Passage sur 2 lignes si trop serré) --- */
@media (max-width: 992px) {
    .footer-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .footer-sep {
        display: none; /* Cache les barres verticales sur mobile pour plus de clarté */
    }
}

footer a {
    color: var(--ocean-primary);
    text-decoration: none;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .path-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-grid,
    .coaching-features,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }

    .header-content {
        padding: 0 20px;
        height: 70px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav li {
        border-bottom: 1px solid var(--ocean-border);
    }

    .main-nav a {
        display: block;
        padding: 15px 30px;
    }

    .mobile-toggle {
        display: block;
    }

    .logo img {
        height: 40px;
    }

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image img {
        height: 400px;
    }

    .image-section {
        background-attachment: scroll;
        height: 350px;
    }

    .image-overlay-text {
        font-size: 24px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo img {
        height: 50px;
    }
}
/* ----- Testimonials ----- */
/* ----- Testimonials ----- */
.testimonials {
  padding: 90px 0;
  background-color: #fff;
  color: var(--ocean-heading);
}

.testimonials .section-title,
.testimonials .section-subtitle {
  color: var(--ocean-heading);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f8f9fb;               /* gris très clair pour contraste */
  border-radius: 12px;
  padding: 28px 26px 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-stars {
  color: #f5b301; /* doré lumineux */
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  user-select: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-quote {
  position: absolute;
  top: -8px;
  left: 14px;
  font-size: 90px;
  line-height: 1;
  color: rgba(19,175,240,0.18);
  pointer-events: none;
  user-select: none;
}

.testimonial-card p {
  margin: 18px 0 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ocean-text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--ocean-heading);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
/* --- Price text (no bubble, italic, centered) --- */
.price-badge {
  margin-top: 15px;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  text-align: center;
  width: 100%;
}

/* Note text */
.fee-note {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
  text-align: center;
}

/* --- Blue button (Commencer) --- */
.feature-card .btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #00AEEF;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  align-self: center;
}

.feature-card .btn-primary:hover {
  background: #008ecc;
  transform: translateY(-2px);
}

/* --- Center alignment for all card content --- */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card ul {
  text-align: left;
  margin-left: 0;
  margin-top: 15px;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* --- Responsive grid --- */
.coaching-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .coaching-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .coaching-features {
    grid-template-columns: 1fr;
  }
}
/* Forcer les boutons "Commencer" à être alignés en bas */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribue l’espace verticalement */
  align-items: center;
  text-align: center;
}

.feature-card ul {
  flex-grow: 1; /* pousse le contenu vers le haut */
}

.feature-card .btn-primary {
  margin-top: auto; /* force le bouton à rester en bas */
  align-self: center;
}
.social-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Instagram button */
.social-btn.instagram {
  background: #E4405F;
}
.social-btn.instagram:hover {
  background: #C13584;
  transform: translateY(-2px);
}

/* 8a.nu button */
.social-btn.eighta {
  background: #007bff; /* blue tone */
}
.social-btn.eighta:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.social-btn i {
  font-size: 18px;
}





