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

@font-face {
    font-family: 'Adam';
    src: url('adam.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-dark: #3c3c3b;
    --primary-gold: #c58511;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --border-light: #e9ecef;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    overflow-x: hidden;
}

/* Header */
header {
    background: white;
    color: var(--primary-dark);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Nav principal → logo à gauche, menu à droite */
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
}

/* Logo à gauche */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 90px;
    height: auto;
}

/* Menu à droite */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    font-family: 'Adam', 'Inter', sans-serif;
}

.nav-links a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Menu hamburger masqué par défaut */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: white;
    color: var(--primary-dark);
    padding: 150px 0 80px; /* Plus de padding-top pour compenser le header fixe */
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content img.hero-logo {
    width: 400px;
    max-width: 90vw;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    margin-left: calc(50% - 6px);
    transform: translateX(-50%);
}

.hero h1 {
    font-family: 'Adam', 'Inter', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin: 0 auto 2rem auto;
    color: var(--text-gray);
    font-weight: 300;
    text-align: center;
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(197, 133, 17, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(197, 133, 17, 0.4);
    background: #d4921a;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    text-align: center;
    font-family: 'Adam', 'Inter', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: var(--primary-gold);
    font-family: 'Adam', 'Inter', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-gold);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem; 
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 133, 17, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Adam', 'Inter', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card .subtitle {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.service-card .price {
    display: none;
}

/* Profile Section */
.profile {
    padding: 100px 0;
    background: white;
    color: var(--primary-dark);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

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

.profile-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #d4921a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
}

.profile-text h3 {
    color: var(--primary-gold);
    font-family: 'Adam', 'Inter', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.profile-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Social Proof / Clients Section */
.social-proof {
    padding: 100px 0;
    background: white;
}

.social-proof-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    min-width: 200px;
    height: 120px;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.social-proof-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.social-proof-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.contact-item i {
    color: var(--primary-gold);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

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

    .hero {
        padding: 130px 0 60px; /* Moins de padding sur mobile */
    }

    .hero-content img.hero-logo {
        width: 280px; /* Logo plus petit sur mobile */
        margin-bottom: 1.5rem;
    }

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

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

    .about-content,
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .hero-content img.hero-logo {
        width: 240px; /* Encore plus petit sur très petit écran */
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
}

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

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

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Pulse effect for CTA */
@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(197, 133, 17, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(197, 133, 17, 0.5); }
    100% { box-shadow: 0 10px 30px rgba(197, 133, 17, 0.3); }
}

.cta-button {
    animation: pulse 2s infinite;
}
/* ==== Styles de puces personnalisées ==== */

ul.custom-bullet {
  list-style: none;           /* Supprime les puces par défaut */
  padding-left: 0;            /* Supprime le retrait à gauche */
}

ul.custom-bullet li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.6em;
}

ul.custom-bullet li::before {
  content: '●';               /* Change la forme ici : •, ✔, →, ★, etc. */
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--primary-gold); /* Utilise ta couleur or */
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr !important;
  }
}

input, select, textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
  border-color: #c49000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(196, 144, 0, 0.2);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
}

/* === STYLE PERSONNALISÉ DU FORMULAIRE DE CONTACT === */

.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-bottom: 0;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c49000' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 2px rgba(196, 144, 0, 0.2);
  outline: none;
}

.contact-form textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 150px;
}

/* === RGPD checkbox simple & propre === */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--primary-dark);
  grid-column: 1 / -1;
  margin-top: 1rem;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-gold);
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: checkbox;
}

/* === Submit button === */
.contact-form button[type="submit"] {
  background-color: var(--primary-gold);
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 10px 30px rgba(197, 133, 17, 0.3);
  text-transform: uppercase;
}

.contact-form button[type="submit"]:hover {
  background-color: #d9a21a;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(197, 133, 17, 0.4);
}