@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bayon&display=swap');
:root {
    --primary: #460080;
    --primary-light: #8b5de1;
    --primary-dark: #5022b8;
    --dark: #0f0f0f;
    --darker: #070707;
    --light: #f6f6f6;
    --gray: #a0a0a0;
    --border-radius: 30px;
    --transition: all 0.3s ease;
    --spacing: 0px; /* valeur fixe plus petite */
    --shadow-offset: 0;
    --shadow-blur: 20px;
    --shadow-spread: -5px;
    --shadow-color: rgba(255, 255, 255, 0.7);

    --tint-color: 255, 255, 255;
    --tint-opacity: 0.15;      /* plus léger = plus lisible */
    --shadow-color: rgba(255,255,255,0.4);

    --frost-blur: 2px;

    --noise-frequency: 0.008;
    --distortion-strength: 77;

    --outer-shadow-blur: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu';
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000000;
    color: var(--light);
    line-height: 1.7;
    min-height: 100vh; 
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-family: "Poppins", sans-serif;
}

p.lead {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 300;
}

a {
    text-decoration: none;
}

.subtitle {
    color: var(--gray);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    margin-bottom: var(--spacing);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 30px 0;
    background-color: black;
}

header.scrolled {
    background-color: #000000;
    backdrop-filter: blur(10px); /* Ajustez 5px pour l'intensité */
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
  font-family:  'Bayon';
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  -webkit-background-clip: text;
  color: #DFCBE7;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s ease;
  }

.logo span {
  background:#6107b6;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: all 0.4s ease;
  font-size: 35px;
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--primary-light);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background-color: var(--light);
    margin: 6px 1px;
    transition: var(--transition);
    border-radius: 980px;

}

/* Mobile Menu */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        background-color: var(--darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        padding: 2rem;
        gap: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-3px, 3px);
    }
    
    .hamburger.active div:nth-child(2) {
        transform: rotate(45deg) translate(-3px, -3px);
    }
}

/* Dégradé animé 4 couleurs – gauche vers droite */
.degrade-anime {
  background: linear-gradient(
    90deg,
    #7b2be4,
    #c0588d,
    #4fd1c5
    #7b2be4
  );
  background-size: 400% 400%;
  animation: gradientMove 5s ease infinite;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


.btn {
  position: relative;
  display: inline-block;
  background: rgba(139, 93, 225, 0.3);
  color: var(--light);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  border: none;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Glow dynamique */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 18px;
}

.btn-outline-hero {
    background-color: transparent;
    border: 2px solid #3a3c79;
}

.btn-outline-hero::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #6107b6;
    transition: all 0.1s ease;
    z-index: -1;
}

.btn-outline-plus {
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid var(--plus);
}

.btn-outline-plus:hover::before {
    background-color: var(--plus);
}

.btn-outline-plus:hover {
    color: #070707;
}


.btn-outline-start {
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid #2861CA;
}

.btn-outline-start:hover::before {
    background-color: #2861CA;
}

.btn-outline-start:hover {
    color: #070707;
}

.btn-outline-pro {
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid #CBEE2F;
}

.btn-outline-pro:hover::before {
    background-color: #CBEE2F;
}

.btn-outline-pro:hover {
    color: #070707;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.devis {
    background: #25287a;
}

/* Sections */
section {
    margin: 0;
    padding: 2rem 0;
    position: relative;
    transition: var(--transition);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.section-header li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.section-header li:before {
    content: '✓ ';
    color: var(--primary);
    font-weight: bold;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    border-radius: 50px;
    margin: 0 clamp(15px, 5vw, 50px);
    margin-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2c2c2c5d, rgba(7, 7, 7, 0)), url('background-abstract-2.png') center/cover no-repeat;
    z-index: -1;
    border-radius: 50px;
    margin: 0 clamp(15px, 5vw, 50px);
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease;
}

.hero-content span {
    background: linear-gradient(90deg, #572666, #C0588D);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    opacity: 0.3;
    z-index: -1;
}

.services {
    background-color: #060606;
    padding: 80px 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 40px 30px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(139, 93, 225, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

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

.service-card:hover {
  box-shadow: 0 0 20px rgba(139, 93, 225, 0.3);
}


.service-card-unique {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.021);
  border-radius: 22px;
  padding: 50px 40px;
  backdrop-filter: blur(1px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-icon {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

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

/* Pricing Section */
.pricing {
    background-color: var(--darker);
    padding: 80px 0;
}

.pricing-unique {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pricing-card-unique {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: var(--noise-frequency);
}

.pricing-card-unique h3 {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-desc {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pricing-highlights {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.highlight-item span {
    color: var(--light);
    font-weight: 500;
}

/* Responsive Styles for Services and Pricing */
@media (max-width: 1200px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        order: -1;
    }
}

@media (max-width: 576px) {
    
    .amount {
        font-size: 2rem;
    }
    
    .pricing-features ul {
        padding-left: 5px;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
    }
    
    .pricing-badge {
        font-size: 0.7rem;
        padding: 5px 25px;
        right: -30px;
    }
}

/* Style spécifique pour les icônes de tarifs basé sur l'image */
.pricing-features li i.fa-check {
    color: var(--primary);
}

.pricing-features li i.fa-times {
    color: var(--gray);
}

/* Animation légère au chargement */
.pricing-grid {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    border-radius: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 300px;
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(7, 7, 7, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.project-overlay h3 {
    margin-bottom: 5px;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

/* About Section */
.about {
    background-color: var(--darker);
}

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

.about-img-container {
    position: relative;
    height: 100%;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.about-img-bg {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 50px;
    z-index: 0;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about {
  background: linear-gradient(180deg, #0b0b0b, #101010);
  position: relative;
  padding: 100px 0;
}

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

.about-text {
  color: #dcdcdc;
}

.about-text h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #7b2be4, #5c15b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text h2 {
  font-size: 3.5rem;
  
  margin-bottom: 30px;
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-img-container {
  position: relative;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.about-img-container:hover .about-img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-img-container {
    order: -1;
    margin-bottom: 40px;
  }
}

/* Why Website Layout */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

#why-website .section-header {
    text-align: left;
    margin-bottom: 0;
}

#why-website p {
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.carousel-container {
    position: relative;
}

.carousel-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.carousel-btn {
    background: #ffffff18;
    color: white;
    border: 1px solid #ffffff60;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: transparent;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 30px;
}

.carousel-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.carousel-slide.active {
    display: grid;
    opacity: 1;
}

@media (max-width: 768px) {
    .why-layout {
        grid-template-columns: 1fr;
    }
    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    #why-website .section-header {
        display: none;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--darker);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
    border-radius: 30px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-text {
    margin-bottom: 2rem;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, rgb(15, 15, 15), rgba(7, 7, 7, 0.9)), url('https://img.freepik.com/premium-photo/human-resources-people-networking_31965-1240.jpg?semt=ais_hybrid&w=740&q=80') center/cover no-repeat;
}

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

.contact-info {
    margin-bottom: 40px;
    border-radius: 30px;
}

.contact-form {
    width: 100%;
}

/* Accordéon Contact */
.contact-accordion {
    width: 100%;
}

.accordion-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    color: var(--light);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.accordion-header:focus {
    outline: 2px solid rgba(139,93,225,0.25);
}

.accordion-toggle {
    font-weight: 700;
    transform: rotate(0deg);
    transition: transform 0.25s ease;
}

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

.accordion-body {
    max-height: 0;
    padding: 0 20px;
    color: var(--gray);
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
}

.accordion-item.open .accordion-body {
    padding: 18px 20px 24px 20px;
    max-height: 240px; /* suffisant pour contenu court */
}

.accordion-body a {
    color: var(--light);
    display: inline-block;
    margin-top: 6px;
}

.muted {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 8px;
}

.form-group {
    margin-bottom: 20px;
    border-radius: 30px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
}

textarea {
    height: 180px;
    resize: vertical;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

input:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 0 2px rgba(107, 61, 208, 0.2);
    border-radius: 10px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 25px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info .lead {
    color: #bfbfbf;
    margin-bottom: 25px;
    line-height: 1.6;
    border-radius: 20px;
}

.contact-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-details li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d1d1;
    font-size: 1rem;
}

.contact-details li i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.contact-details a {
    color: #d1d1d1;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary);
}


/* Footer */
footer {
    background: url(https://t4.ftcdn.net/jpg/07/62/13/47/360_F_762134721_en7K8iDoBbqH6tlMNqVU4GNWflV52ago.jpg) center/cover no-repeat linear-gradient(to top rgba(0, 0, 0, 0.11), rgba(7, 7, 7, 0));
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(112, 112, 112, 0.336);
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    margin-bottom: 20px;
    color: var(--gray);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
}

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

.social-icon {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0);
    border-radius: 35%;
    border: 1px solid rgb(131, 131, 131);
}

.social-icon:hover {
    color: white;
    background-color: rgb(0, 0, 0);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(112, 112, 112, 0.336);
    color: var(--gray);
    font-size: 0.9rem;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-container {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin: 0;
        border-radius: 0;
        padding-top: 100px;
    }
    
    .hero::before {
        margin: 0;
        border-radius: 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .services-grid,
    .projects-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.fade-in {
    animation: fadeIn 1s ease;
}

/* Section Languages */
#languages {
    background: #EAEAEE;
    padding: 100px 0;
    position: relative;
    margin: 0 clamp(15px, 5vw, 50px);
    border-radius: 50px;
}

#languages .section-header {
    margin-bottom: 4rem;
}

#languages .section-header h2 {
    color: #000000;
}

#languages .section-header p {
    color: #000000;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 992px) {
    #languages {
        margin: 0 clamp(12px, 4vw, 40px);
        padding: 80px 0;
        border-radius: 30px;
    }

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

    .language-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    #languages {
        margin: 0;
        border-radius: 0;
        padding: 60px 20px;
    }

    .languages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .language-card {
        padding: 22px 16px;
        border-radius: 20px;
    }
}

.language-card {
    background: #ffffff;
    border-radius: 50px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.language-icon {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 1.5rem;
    display: block;
}

.language-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.language-card p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .languages-grid {
        grid-template-columns: 1fr;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.subtitle {
    color: var(--gray);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto;
}

/* Effet scroll : couleur + taille pour le texte sous "Tarifs" */
#unique .subtitle {
  color: #a0a0a0;
  font-size: 24px;
  transition: color 0.6s ease, transform 0.6s ease;
}

.subtitle-text-unique {
      color: #ffffff;
      font-size: 28px;
      margin-bottom: 10px;
}

.container-unique {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  background: linear-gradient(rgba(0, 0, 0, 0.733)), url('Contact-bg.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
}

.pricing-card-unique {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  padding: 60px 50px;
  max-width: 650px;
  width: 100%;
}

.subtitle-text-unique {
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .pricing-card-unique {
    max-width: 550px;
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .container-unique {
    padding: 80px 20px;
  }
  .pricing-card-unique {
    max-width: 90%;
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .pricing-card-unique {
    padding: 35px 20px;
  }
}

.fade-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.glassDiv {
    color: #fff;               /* texte blanc bien visible */
    font-weight: 600;
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
    text-decoration: none;         /* enlève le soulignement du lien */
    z-index: 1;                    /* place le texte au-dessus du verre */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100px;
    height: 50px;
    border-radius: 28px;
    isolation: isolate;
    box-shadow: 0px 6px var(--outer-shadow-blur) rgba(0, 0, 0, 0.2);

    cursor: pointer;               /* effet bouton */
}

.glassDiv::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;  /* passe derrière le texte */
    box-shadow: inset var(--shadow-offset) var(--shadow-offset)
        var(--shadow-blur) var(--shadow-spread) var(--shadow-color);
    background-color: rgba(var(--tint-color), var(--tint-opacity));
}

.glassDiv::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;  /* reste derrière le texte */
    backdrop-filter: blur(var(--frost-blur));
    filter: url(#glass-distortion);
    -webkit-backdrop-filter: blur(var(--frost-blur));
}

.back-to-top {
            position: fixed;
            bottom: 10px;
            right: 10px;
            background-color: #00000081;
            color: white;
            border-radius: 50px;
            border: 1px solid;
            border-color: #181818b4;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}
            backdrop-filter: blur(10px);
}

.banner {
    background: linear-gradient(to top, #000000 0%, #272727, #000000 100%);
    padding: 80px 0;
    position: relative;
}

.banner span {
    color: var(--primary);
}

.banner-content {
    color: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 clamp(15px, 5vw, 50px);
    background-color: #ffffff;
    padding: 80px 100px;
    border-radius: 80px;
}

.banner-left h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.btn-banner {
    background: #EAEAEE;
    color: black;
    border-radius: 50px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 40px;
}

.btn-banner:hover {
    background: #ffffff;
    border: 1px solid #000000;
}

.banner-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.banner-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.icon-item {
    text-align: center;
    color: rgb(0, 0, 0);
    background-color: #EAEAEE;
    border-radius: 25px;
    padding: 30px 20px;
}

.icon-item i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    display: block;
}

.icon-item span {
    font-size: 1rem;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 20px;
        gap: 30px;
        margin: 0;
        border-radius: 0;
    }

    .banner-right {
        display: none;
    }

    .btn-banner {
        width: 100%;
        padding: 14px 18px;
        display: inline-block;
    }

    .banner-left h2 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .icon-item {
        padding: 18px 12px;
    }
}

@media (max-width: 992px) {
    .banner-content {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        gap: 40px;
        border-radius: 40px;
    }

    .btn-banner {
        padding-left: 28px;
    }
}

.texte-degrade {
  background-image: linear-gradient(45deg, #D3B6DE, #C6CBE7, #B2CDA9);
  -webkit-background-clip: text;
  background-clip: text; /* Masque le fond au texte */
  -webkit-text-fill-color: transparent; /* Rend le texte original invisible */
  color: transparent;
}