:root {
    --color-bg: #0a0a0a;
    --color-text: #f4f4f4;
    --color-accent: #00ffd0;
    --color-gradient: linear-gradient(135deg, #f857a6, #ff5858);
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

.btn-primary {
    display: inline-block;
    background: var(--color-gradient);
    color: #fff;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, background 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #00ffd0, #00b8b8);
}

a {
    color: var(--color-accent);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.hero-wow {
    background: radial-gradient(ellipse at top left, #1c1c1c, #000);
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-wow::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, #00ffd0 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 6s ease-in-out infinite;
}

.hero-wow h1 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
    color: white;
}

.hero-wow p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #ccc;
}

.btn-glow {
    background: var(--color-gradient);
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 208, 0.2);
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 208, 0.4);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}
.services-grid-section {
    padding: 5rem 1.5rem;
    background: #0a0a0a;
    color: var(--color-text);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 255, 208, 0.15);
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}
.testimonials-section {
    background-color: #0a0a0a;
    padding: 5rem 1.5rem;
    color: var(--color-text);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 3rem;
}

.testimonial-card {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: #ccc;
}

.testimonial-meta {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.site-footer {
    background: #000;
    color: #ccc;
    font-size: 0.95rem;
    padding-top: 3rem;
    border-top: 1px solid #111;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-logo {
    width: 140px;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ccc;
    transition: color 0.2s ease;
}

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

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--color-accent);
}


.faq-section {
    padding: 5rem 1.5rem;
    background: #000;
    color: #ccc;
}

.faq-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-list li {
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #222;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-list li strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.accordion-item {
    border-radius: 8px;
    background: #111;
    overflow: hidden;
    border: 1px solid #222;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-weight: 600;
    padding: 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
}

.accordion-item.open .accordion-header .arrow {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: #1a1a1a;
    transition: max-height 0.3s ease;
    padding: 0 1.25rem;
}

.accordion-item.open .accordion-body {
    max-height: 200px;
    padding: 1rem 1.25rem;
}
.text-center {
    text-align: center;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 2rem;
    text-align: center;
}
.hero {
    position: relative;
    padding: 6rem 1rem;
    text-align: center;
    background: linear-gradient(145deg, #0a0a0a 0%, #0f0f0f 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/bg-pattern.svg') no-repeat center;
    background-size: cover;
    opacity: 0.04;
    z-index: 0;
}

.hero-title {
    position: relative;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    z-index: 1;
}

.hero-subtitle {
    position: relative;
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 2rem;
    z-index: 1;
}

.btn-gradient {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #ff6b6b, #4dd0e1);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease;
    z-index: 1;
    position: relative;
}

.btn-gradient:hover {
    transform: scale(1.05);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Assombrit pour lisibilité */
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.btn-gradient {
    display: inline-block;
    background: linear-gradient(to right, #ff6b6b, #4dd0e1);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


.hero-enhanced .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1;
}

.hero-enhanced .hero-inner {
    z-index: 2;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    color: white;
}
.hero-svg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  
  .hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .site-header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 48px;
    filter: drop-shadow(0 0 8px #f0f0f0);
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .main-nav a:hover {
    color: #4fd1c5;
  }
  
  .burger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
  }
  
  /* Mobile Menu */
  @media screen and (max-width: 768px) {
    .main-nav {
      display: none;
      position: absolute;
      top: 70px;
      right: 20px;
      background: #111;
      border-radius: 8px;
      padding: 1rem;
    }
  
    .main-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  
    .burger {
      display: block;
    }
  
    .main-nav.active {
      display: block;
    }
  }
  /* Header Styles */
.site-header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 48px;
    filter: drop-shadow(0 0 8px #00f0ff55);
  }
  
  .main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .main-nav a:hover {
    color: #4fd1c5;
  }
  
  .burger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .main-nav {
      display: none;
      position: absolute;
      top: 70px;
      right: 20px;
      background: #111;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
  
    .main-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  
    .main-nav.active {
      display: block;
    }
  
    .burger {
      display: block;
    }
  }
  /* Footer */
.site-footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .footer-brand img {
    width: 100px;
    margin-bottom: 1rem;
  }
  
  .footer-slogan {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
  }
  
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #fff;
  }
  
  .footer-nav ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav a,
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover,
  .footer-contact a:hover {
    color: #4fd1c5;
  }
  
  .footer-socials a {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-socials a:hover {
    color: #4fd1c5;
  }
  
  .footer-bottom {
    border-top: 1px solid #222;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }
  .hero-section {
    position: relative;
    background-color: #000;
    color: white;
    padding: 10rem 2rem 6rem;
    overflow: hidden;
    text-align: center;
  }
  .hero-section {
    padding: 80px 20px;
    text-align: center;
  }
  
  .hero--contact {
    background: linear-gradient(to bottom, #0a3d3f, #0c0c0c);
  }
  
  .hero--services {
    background: radial-gradient(circle at center, #08292d, #0a0a0a);
  }
  
  .hero--about {
    background: linear-gradient(to bottom, #0e0e0e, #1a1a1a);
  }
  
    
  .hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #ccc;
  }
  
  .hero-section .cta-button {
    background: linear-gradient(to right, #ec4899, #4fd1c5);
    color: white;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .hero-section .cta-button:hover {
    transform: scale(1.05);
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 1;
  }
    
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .cta-section {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    background: linear-gradient(to right, #ec4899, #4fd1c5);
    color: white;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: scale(1.05);
  }

  
  .cta-section {
    text-align: center;
    background-color: #111;
    padding: 4rem 2rem;
  }
  
  .cta-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .btn-primary {
    background: linear-gradient(to right, #ec4899, #4fd1c5);
    color: white;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: scale(1.05);
  }

  
/* Section Hero Services */
.services-hero {
    position: relative;
    padding: 6rem 1rem 4rem;
    background: radial-gradient(circle at center, #071b1f 0%, #0a0a0a 100%);
    color: white;
    text-align: center;
    overflow: hidden;
  }
  
  .services-hero .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
  }
  
  .services-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .services-hero p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  .svg-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  /* Section Services Grid */
  .services-grid {
    padding: 5rem 2rem;
    background: #0a0a0a;
  }
  
  .services-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: #111;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
    transition: all 0.3s ease;
  }
  
  .service-card:hover {
    background: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.08);
  }
  
  .service-card .icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1rem;
    color: white;
  }
  
  .service-card p {
    color: #aaa;
    font-size: 0.95rem;
  }
  
  /* Section Call To Action */
  .cta-section {
    text-align: center;
    background: linear-gradient(90deg, #ff6b6b, #48c6ef);
    color: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-primary {
    background: black;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #1a1a1a;
  }
  
  .cta-section .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: linear-gradient(to right, #ff6b6b, #48c6ef);
    color: #fff;
    font-weight: 600;
  }
  .services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(79, 209, 197, 0.3);
    margin-bottom: 1rem;
  }
  
  .services-hero p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto;
    color: #aaa;
  }
  
  .service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #4fd1c5;
  }
  .service-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  /* Section Hero */
.hero-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #0e0e0e, #1a1a1a);
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
  }
  
  /* Section Mission */
  .mission-section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .section-text {
    font-size: 1rem;
    color: #aaaaaa;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Section Valeurs */
  .valeurs-section {
    padding: 60px 20px;
  }
  
  .valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .valeur-card {
    transition: all 0.3s ease;
    border-top: 2px solid transparent;
  }
  
  .valeur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    border-top: 2px solid #00c6ff;
  }
  
  
  .valeur-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
  }
  
  .valeur-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .valeur-text {
    font-size: 1rem;
    color: #cccccc;
  }
  
  .contact-card {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    gap: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-3px);
  }
  
  .contact-icon {
    background-color: #2e2e2e;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-icon .icon {
    width: 24px;
    height: 24px;
    color: #00c6ff;
  }
  .hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
    pointer-events: none;
  }
  
  .hero-section {
    position: relative;
    overflow: hidden;
  }
  .hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
    pointer-events: none;
  }
  
  .hero-section {
    position: relative;
    overflow: hidden;
  }
  
  .contact-card {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    gap: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-3px);
  }
  
  .contact-icon {
    background-color: #2e2e2e;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-icon .icon {
    width: 24px;
    height: 24px;
    color: #00c6ff;
  }
  
  .btn-reveal {
    background: none;
    color: #00c6ff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    padding: 0;
  }

  .hero--legal {
    background: linear-gradient(to bottom, #101010, #1b1b1b);
  }
  
  .legal-section {
    padding: 60px 20px;
    background: #111;
  }
  
  .legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.7;
  }
  
  .legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    color: #fff;
  }
  
  .legal-content a {
    color: #00c6ff;
    text-decoration: underline;
  }
  .hero--privacy {
    background: linear-gradient(to bottom, #111, #1a1a1a);
  }
  
  .legal-section {
    padding: 60px 20px;
    background: #111;
  }
  
  .legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.7;
  }
  
  .legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    color: #fff;
  }
  
  .legal-content a {
    color: #00c6ff;
    text-decoration: underline;
  }
  .hero--cookies {
    background: linear-gradient(to bottom, #0f0f0f, #1c1c1c);
  }
  .hero--cgv {
    background: linear-gradient(to bottom, #121212, #1d1d1d);
  }
  
  .legal-section {
    padding: 60px 20px;
    background: #111;
  }
  
  .legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.7;
  }
  
  .legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    color: #fff;
  }
  
  .legal-content a {
    color: #00c6ff;
    text-decoration: underline;
  }
  .hero--cgu {
    background: linear-gradient(to bottom, #101010, #1d1d1d);
  }
  .cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ccc;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    z-index: 1000;
  }
  
  .cookie-popup-content p {
    margin-bottom: 16px;
    font-size: 0.9rem;
  }
  
  .cookie-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .cookie-popup button, .cookie-popup a {
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
  }
  
  .btn-primary {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border: none;
    color: #fff;
  }
  
  .btn-secondary {
    background: #333;
    border: none;
    color: #fff;
  }
  
  .btn-link {
    color: #00c6ff;
    background: none;
    border: none;
  }
  .hidden {
    display: none;
  }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.form-side, .map-side {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.infos-box {
  margin-top: 1.5rem;
}

.infos-box h3 {
  margin-bottom: 0.5rem;
  color: #4fd1c5;
}

.alert-success {
  background-color: #2ecc71;
  padding: 1rem;
  border-radius: 5px;
  color: white;
}

.alert-danger {
  background-color: #e74c3c;
  padding: 1rem;
  border-radius: 5px;
  color: white;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ====== Design Contact Page CodeHaven ====== */

.contact-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background: radial-gradient(circle at center, rgba(79, 209, 197, 0.15) 0%, transparent 70%);
}

.contact-hero h1 {
  font-size: 2rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #ccc;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #222;
  border: 1px solid #444;
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #fff;
  border-radius: 0.5rem;
}

.contact-form button {
  background: #4fd1c5;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #38b2ac;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #111;
  padding: 2rem;
  border-radius: 0.75rem;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p,
.contact-info a {
  color: #ccc;
  display: block;
  margin-bottom: 1rem;
}

#map {
  width: 100%;
  height: 300px;
  border-radius: 0.75rem;
  margin-top: 1rem;
}

/* Phone reveal link */
.reveal-phone {
  color: #4fd1c5;
  cursor: pointer;
  text-decoration: underline;
}

.reveal-phone:hover {
  color: #38b2ac;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form, .contact-infos {
  flex: 1 1 400px;
  background: #111;
  padding: 2rem;
  border-radius: 10px;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.map-container iframe {
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

input, textarea {
  width: 100%;
  padding: 12px;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
}

button.btn-primary {
  background-color: #4fd1c5;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button.btn-primary:hover {
  background-color: #38b2ac;
}

.alert-success {
  background: #2ecc71;
  padding: 10px;
  border-radius: 5px;
  color: white;
}

.alert-error {
  background: #e74c3c;
  padding: 10px;
  border-radius: 5px;
  color: white;
}
           