/* ===== VARIABLES ===== */
:root {
    --primary: #c5a059; /* Or élégant */
    --primary-dark: #9e7c3f;
    --secondary: #1e2b3a; /* Bleu profond */
    --secondary-light: #2c3e50;
    --dark: #0a121c;
    --darker: #050a10;
    --light: #f5f7fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* Import Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    text-align: center; /* Centrage des titres */
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%; /* Pour que le pseudo-élément soit centré */
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== BRILLANCE ===== */
h1, h2, h3, .section-tag, .stat-number, .lead, .quote-text {
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.lead {
    font-size: 1.6rem !important;
    font-weight: 500;
    color: var(--secondary);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 18, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.navbar.scrolled {
    background: var(--darker);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

#company-logo {
    height: 150px;
    width: 150px;
    border-radius: 50%; /* Logo circulaire */
    object-fit: cover; /* Pour que l'image remplisse bien le cercle */
    border: 2px solid var(--primary);
    transition: var(--transition);
}

#company-logo:hover {
    transform: scale(1.05);
    border-color: var(--white);
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-menu a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 18, 28, 0.95), rgba(5, 10, 16, 0.98)), 
                url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-1.2.1&auto=format&fit=crop&1950x1080&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    margin-top: 0;
    overflow: hidden;
}

.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 100 100" opacity="0.05"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23c5a059" stroke-width="1"/><circle cx="50" cy="50" r="10" fill="none" stroke="%23c5a059" stroke-width="1"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px var(--primary);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.8);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ===== PRESENTATION SECTION ===== */
.presentation-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: center; /* Centrage du texte */
}

.presentation-text .lead {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.presentation-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.2rem;
    line-height: 1.8;
}

.values {
    background: linear-gradient(135deg, var(--light), var(--white));
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    text-align: center;
}

.values h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.values ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.values li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.values li i {
    color: var(--primary);
    font-size: 1.3rem;
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    position: relative;
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item span:last-child {
    font-size: 1.1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: translateX(-100%);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary), var(--darker));
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23c5a059" stroke-width="1"/><circle cx="50" cy="50" r="10" fill="none" stroke="%23c5a059" stroke-width="1"/></svg>') repeat;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 100px 0;
    min-height: 60vh;
    background: var(--white);
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center; /* Centrage du contenu */
}

.service-detail h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin: 3rem 0 1.5rem;
}

.service-detail h2:first-of-type {
    margin-top: 0;
}

.service-detail p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.service-detail img {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    width: 1150px;
    height: 550px;
    border: 5px solid;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


/* ===== PRODUCT CATEGORIES ===== */
.products-grid,
.rental-grid,
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.product-category,
.rental-item,
.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-category:hover,
.rental-item:hover,
.feature:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.product-category i,
.rental-item i,
.feature i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-category h3,
.rental-item h3,
.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.product-category p,
.rental-item p,
.feature p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== BRANDS ===== */
.brands {
    background: linear-gradient(135deg, var(--light), var(--white));
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: var(--shadow);
    text-align: center;
}

.brands h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.brands ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.brands li {
    background: var(--primary);
    color: var(--secondary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 3rem 0;
}

.product-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 4px;
}

.product-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* ===== CONTACT PROMPT ===== */
.contact-prompt {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary), var(--darker));
    color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-prompt::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 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23c5a059" stroke-width="1"/><circle cx="50" cy="50" r="10" fill="none" stroke="%23c5a059" stroke-width="1"/></svg>') repeat;
    pointer-events: none;
}

.contact-prompt h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-prompt .cta-button {
    position: relative;
    z-index: 2;
}

/* ===== NOTE ===== */
.note {
    background: rgba(197, 160, 89, 0.1);
    border-left: 5px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    font-size: 1.1rem;
    text-align: center;
}

.note i {
    color: var(--primary);
    margin-right: 10px;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-info-detailed {
    background: linear-gradient(135deg, var(--secondary), var(--darker));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-block {
    margin: 2.5rem 0;
}

.info-block h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block h3 i {
    font-size: 1.5rem;
}

.info-block p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.1rem;
    padding-left: 2rem;
}

.contact-form-detailed {
    padding: 3rem;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--darker);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: left; /* Pour le footer, on garde aligné à gauche */
}

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

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

.footer-section i {
    color: var(--primary);
    width: 25px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(244, 240, 245, 0.922);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== ENGAGEMENT SECTION ===== */
.engagement-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), rgba(30, 43, 58, 0.02));
    border-radius: 30px;
    position: relative;
    text-align: center;
}

.engagement-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary);
    color: var(--darker);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.engagement-text .lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.highlight-box {
    background: rgba(197, 160, 89, 0.1);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border-left: 4px solid var(--primary);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary);
}

.highlight-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.engagement-quote {
    background: var(--secondary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.engagement-quote i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.quote-text {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 0 10px rgb(255, 255, 255 0.8);
}

.quote-author {
    color: var(--primary);
    font-weight: 600;
    text-align: right;
}

.engagement-footer {
    text-align: center;
    font-size: 1.4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.engagement-footer .highlight {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.engagement-footer .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.engagement-footer:hover .highlight::after {
    transform: scaleX(1);
}

.presentation-image {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
    width: 1150px;
    height: auto;
    margin-right: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.image-centree {
    max-width: 100%;     
    height: auto;        
    border-radius: 12px; 
    display: inline-block; 

    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ===== TEXTES BRILLANTS ===== */
/* Liens du footer : blanc pur avec ombre brillante */
.footer-section a {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    opacity: 1 !important; /* supprime l'assombrissement */
}

/* Bouton "Demander une intervention" dans la zone de contact */
.contact-prompt .cta-button {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    background: transparent;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.contact-prompt .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .presentation-content,
    .contact-grid,
    .engagement-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid var(--primary);
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--white);
        margin: 6px 0;
        transition: var(--transition);
        border-radius: 3px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-prompt h3 {
        font-size: 1.8rem;
    }
    
    .contact-info-detailed,
    .contact-form-detailed {
        padding: 2rem;
    }
    
    .engagement-content {
        gap: 2rem;
    }
    
    .highlight-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .brands ul {
        flex-direction: column;
    }
    
    .brands li {
        text-align: center;
    }
}

/* ===== VIDÉO DANS LA PAGE SERVICE ===== */
.service-video {
    width: 100%;
    max-width: 900px;        /* même taille que l'image que tu voulais */
    height: 500px;
    object-fit: cover;
    border-radius: 50px;     /* bords très arrondis, comme demandé */
    display: block;
    margin: 30px auto;       /* centrée */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-video:hover {
    transform: scale(1.02);
}

/* Pour mobile : un peu moins arrondi */
@media (max-width: 768px) {
    .service-video {
        border-radius: 30px;
        margin: 20px auto;
    }
}



/* Grille de location */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.rental-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding-bottom: 1.5rem;
}

.rental-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.rental-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    border: 4px;
}

.rental-card:hover .rental-image img {
    transform: scale(1.05);
}

.rental-icon {
    position: absolute;
    top: 160px; /* à cheval sur l'image */
    right: 20px;
    background: #c99b3b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid white;
}

.rental-card h3 {
    font-size: 1.6rem;
    margin: 2.5rem 1rem 0.5rem 1rem;
    color: #0f3b4f;
    line-height: 1.3;
}

.rental-card p {
    margin: 0 1rem 1.5rem 1rem;
    color: #4a5e6b;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .rental-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 150px;
        right: 15px;
    }
    .rental-card h3 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
}

/* Intro text */
.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #2c3e50;
}

/* Grille des pièces */
.pieces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.piece-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding-bottom: 1.5rem;
}

.piece-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.piece-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.piece-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    border: #b8862c;
}

.piece-card:hover .piece-image img {
    transform: scale(1.05);
}

.piece-icon {
    position: absolute;
    top: 160px; 
    right: 20px;
    background: #c99b3b;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 3px solid white;
}

.piece-card h3 {
    font-size: 1.6rem;
    margin: 2.5rem 1rem 0.5rem 1rem;
    color: #0f3b4f;
    line-height: 1.3;
}

.piece-card p {
    margin: 0 1rem 1.5rem 1rem;
    color: #4a5e6b;
    font-size: 1rem;
    line-height: 1.5;
}

/* Section Garantie */
.guarantee-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #c99b3b;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    border: 1px solid #c99b3b;
}

.guarantee-text {
    flex: 2;
    text-align: left;
}

.guarantee-text i {
    font-size: 3rem;
    color: #312a1a;
    margin-bottom: 1rem;
}

.guarantee-text h3 {
    font-size: 2rem;
    color: #0f3b4f;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
}

.guarantee-image {
    flex: 1;
    text-align: center;
}

.guarantee-image img {
    width: 150px;              
    height: 150px;             
    object-fit: cover;        
    border-radius: 50%;       
    border: 3px solid #c99b3b; 
}

/* Marques */
.brands {
    margin-top: 3rem;
    text-align: center;
}

.brands ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f3b4f;
}

.brands li {
    background: #c99b3b;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.contact-prompt {
    text-align: center;
    margin: 4rem 0 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #c99b3b;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b8862c;
}

@media (max-width: 768px) {
    .guarantee-section {
        flex-direction: column;
        text-align: center;
    }
    .guarantee-text {
        text-align: center;
    }
    .piece-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 150px;
        right: 15px;
    }
    .piece-card h3 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
}

.geoloc-link {
    color: #c99b3b;
    text-decoration: none;
}
.geoloc-link:hover {
    color: #e0b45c;
    text-decoration: underline;
}












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

body{
background:#ffffff;
color:#1e2b3a;
padding-top:90px;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
background:#0a121c;
z-index:1000;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
font-weight:700;
}

.logo img{
width:150px;
height:150px;
border-radius:50%;
}

.nav-menu{
display:flex;
gap:30px;
list-style:none;
}

.nav-menu a{
color:white;
text-decoration:none;
font-weight:500;
}

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:white;
margin:4px;
}

/* HERO */

.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url("https://images.unsplash.com/photo-1581091226033-d5c48150dbaa");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero p{
max-width:600px;
margin:auto;
margin-bottom:30px;
}

.btn-primary{
background:#c5a059;
color:black;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
border:2px solid white;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
color:white;
margin-left:10px;
}

/* PRESENTATION */

.presentation{
padding:80px 20px;
}

.container{
max-width:1200px;
margin:auto;
}

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

.presentation-grid img{
width:100%;
border-radius:15px;
}

/* SERVICES */

.services{
background:#f5f7fa;
padding:80px 20px;
}

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

.service-card{
background:white;
padding:30px;
border-radius:15px;
text-align:center;
transition:0.3s;
}

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

.service-card i{
font-size:40px;
color:#c5a059;
margin-bottom:20px;
}

/* STATS */

.stats{
background:#0a121c;
color:white;
padding:60px 20px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
gap:30px;
}

.stats h3{
font-size:40px;
color:#c5a059;
}

/* CTA */

.cta{
padding:80px;
text-align:center;
}

/* FOOTER */

footer{
background:#0a121c;
color:white;
padding:40px;
}

.footer-container{
display:flex;
justify-content:space-between;
max-width:1200px;
margin:auto;
}

/* MOBILE */

@media(max-width:768px){

.nav-menu{
display:none;
position:absolute;
top:80px;
background:#0a121c;
width:100%;
flex-direction:column;
padding:20px;
}

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

.hamburger{
display:flex;
}

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

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

.footer-container{
flex-direction:column;
gap:20px;
}

}

/* SECTION MISSION */

.mission-list{
list-style:none;
margin-top:25px;
display:flex;
flex-direction:column;
gap:20px;
}

.mission-list li{
display:flex;
align-items:flex-start;
gap:15px;
font-size:16px;
line-height:1.6;
}

.mission-list i{
font-size:22px;
color:#c5a059;
margin-top:5px;
min-width:25px;
}

.mission-list strong{
color:#1e2b3a;
font-size:17px;
}

.service-card{
text-decoration:none;
color:inherit;
display:block;
}