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

:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #f8f8f8;
    --dark: #2c2c2c;
    --light: #ffffff;
    --text: #d4af37;
    --text-light: #666666;
    --gradient: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--light);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-nav {
    background: var(--gradient);
    color: var(--light) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Banner Image */
.hero-banner {
    width: 100%;
    background: #0a0a0a;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/logo/employe1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    background-color: #f7f2ec;
    margin: 1rem 0auto 2.5rem;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero--editorial {
    background: #0a0a0a;
}

.hero--editorial .hero-overlay {
    background: none;
}

.hero-content--editorial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title--editorial {
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: 3px;
    color: #f5f1ec;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero-card {
    background: #f7f2ec;
    border: 2px solid #111111;
    padding: 2.5rem 3rem;
    max-width: 760px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.hero-description--editorial {
    color: #1c1c1c;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.hero-description--editorial:last-child {
    margin-bottom: 0;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient);
    color: var(--light);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Prestations Section */
.prestations {
    padding: 6rem 0 7rem;
    background: #0a0a0a;
}

.prestations .section-title {
    color: #f5f1ec;
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.prestations .section-title::after {
    background: #c9b8a8;
}

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

.prestation-card {
    background: #f7f2ec;
    padding: 3.5rem 2rem 2.5rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    border: 2px solid #111111;
    position: relative;
    overflow: visible;
}

.prestation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.prestation-card h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #1c1c1c;
    font-family: "Georgia", "Times New Roman", serif;
}

.prestation-card p {
    color: #2b2b2b;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: "Georgia", "Times New Roman", serif;
}

.prestation-card--image {
    padding-top: 4.5rem;
}

.prestation-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid #111111;
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.prestation-avatar--1,
.prestation-avatar--2,
.prestation-avatar--3 {
    background-image: radial-gradient(circle at 30% 30%, #9b4b79 0%, #4b1737 55%, #1a0c12 100%);
}

/* Tarifs Section */
.tarifs {
    padding: 6rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.tarifs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="600" cy="400" r="400" fill="%234a1a4a" opacity="0.3"/><circle cx="200" cy="600" r="300" fill="%236b2d5c" opacity="0.2"/><circle cx="1000" cy="200" r="250" fill="%238b4789" opacity="0.2"/></svg>') no-repeat center;
    background-size: cover;
    z-index: 0;
}

.tarifs .container {
    position: relative;
    z-index: 1;
}

.section-title-tarifs {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--light);
    letter-spacing: 3px;
    font-weight: 300;
}

.tarifs-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.tarifs-carousel:hover .tarifs-track {
    animation-play-state: paused;
}

.tarifs-track {
    display: flex;
    gap: 2rem;
    animation: scroll-tarifs 20s linear infinite;
    width: max-content;
}

@keyframes scroll-tarifs {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tarif-box {
    background: rgba(245, 241, 232, 0.95);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    min-width: 320px;
    flex-shrink: 0;
}

.tarif-title {
    background: rgba(0, 0, 0, 0.1);
    color: var(--dark);
    padding: 2rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.tarif-list {
    padding: 0;
}

.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.tarif-row:last-child {
    border-bottom: none;
}

.tarif-row:hover {
    background: rgba(212, 175, 55, 0.1);
}

.tarif-service {
    color: var(--dark);
    font-size: 0.95rem;
    flex: 1;
}

.tarif-price {
    color: var(--dark);
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 1rem;
}

/* Responsive Tarifs */
@media (max-width: 968px) {
    .section-title-tarifs {
        font-size: 2.2rem;
    }

    .tarif-box {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .section-title-tarifs {
        font-size: 1.8rem;
    }

    .tarif-box {
        min-width: 260px;
    }

    .tarif-title {
        font-size: 1.2rem;
        padding: 1.5rem 1rem;
    }

    .tarif-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tarif-price {
        margin-left: 0;
        font-size: 1.2rem;
    }
}

/* RDV Section */
.rdv-section {
    padding: 6rem 0;
    background: var(--light);
}

.rdv-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.regle-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.regle-card:hover {
    transform: translateY(-5px);
}

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

.regle-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.horaires {
    background: var(--gradient);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--light);
    box-shadow: var(--shadow);
}

.horaires h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

.horaire-item {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Avis Section */
.avis {
    padding: 6rem 0;
    background: #000000;
    color: var(--light);
}

.section-title-avis {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--light);
    letter-spacing: 2px;
    font-weight: 300;
}

.section-title-avis::after {
    display: none;
}

.avis-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.avis-carousel:hover .avis-track {
    animation-play-state: paused;
}

.avis-track {
    display: flex;
    gap: 2rem;
    animation: scroll-avis 25s linear infinite;
    width: max-content;
}

@keyframes scroll-avis {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.avis-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: #f5f1e8;
    border-radius: 0;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
    min-width: 350px;
    flex-shrink: 0;
}

.avis-card:hover {
    transform: scale(1.02);
}

.avis-content {
    flex: 1;
    padding: 2.5rem;
    color: var(--dark);
}

.avis-header {
    margin-bottom: 1.5rem;
}

.avis-brand {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.avis-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.stars {
    font-size: 1.2rem;
    color: #000;
    letter-spacing: 2px;
}

.avis-text {
    color: var(--dark);
    line-height: 1.8;
    font-size: 1rem;
    font-style: normal;
}

.avis-image {
    flex-shrink: 0;
    width: 100%;
    height: 180px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, #8B4789 0%, #6B3468 50%, #4A2347 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%234a1a4a;stop-opacity:1" /><stop offset="50%" style="stop-color:%23662d4a;stop-opacity:1" /><stop offset="100%" style="stop-color:%238b4a6a;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23grad1)"/></svg>') no-repeat center;
    background-size: cover;
    position: relative;
    color: var(--light);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a1a4a 0%, #662d4a 50%, #8b4a6a 100%);
    opacity: 0.95;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.section-title-contact {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--light);
    letter-spacing: 3px;
    font-weight: 300;
}

.contact-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    align-items: start;
}

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

.map-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    margin: 0 auto 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: relative;
    z-index: 2;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
}

.map-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #ffffff;
}

.map-embed::before,
.map-embed::after {
    content: none;
}

.map-marker {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    color: #d32f2f;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.map-text {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.contact-address {
    color: var(--light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--light);
}

.bullet {
    font-size: 1.5rem;
    color: var(--light);
}

.contact-label {
    font-weight: 600;
    color: var(--light);
}

.contact-item-new a {
    color: var(--light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item-new a:hover {
    opacity: 0.8;
}

.btn-paypal {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-paypal:hover {
    background: var(--light);
    color: #4a1a4a;
}

.contact-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-footer h3 {
    font-size: 2rem;
    letter-spacing: 3px;
    font-weight: 300;
    color: var(--light);
}

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

.footer p {
    margin: 0.5rem 0;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-overlay {
        background-attachment: scroll;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--light);
        width: 100%;
        max-height: calc(100vh - 80px);
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow);
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        align-items: flex-start;
        gap: 1.5rem;
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.8rem 0;
    }

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

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

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

    .prestations-grid,
    .tarifs-grid,
    .regles-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    /* Avis responsive */
    .avis-card {
        min-width: 300px;
    }

    .avis-image {
        width: 150px;
        height: 150px;
    }

    .avis-content {
        padding: 2rem 1.5rem;
    }

    .section-title-avis {
        font-size: 1.8rem;
    }

    /* Contact responsive */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-map {
        order: 2;
    }

    .contact-details {
        order: 1;
        align-items: center;
    }

    .section-title-contact {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   MODAL RDV - Style Doctolib
   ============================================ */

.rdv-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rdv-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 1;
}

.rdv-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

.rdv-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.rdv-close:hover {
    background: #e0e0e0;
    color: #333;
}

.rdv-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.rdv-logo {
    height: 60px;
    margin-bottom: 15px;
}

.rdv-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 8px;
}

.rdv-header p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.rdv-form {
    padding: 25px 30px 30px;
}

.rdv-step {
    margin-bottom: 30px;
}

.rdv-step h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Cartes de prestation */
.rdv-prestations {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rdv-prestation-card {
    cursor: pointer;
}

.rdv-prestation-card input {
    display: none;
}

.rdv-prestation-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rdv-prestation-card input:checked + .rdv-prestation-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 228, 193, 0.2) 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.rdv-prestation-content:hover {
    border-color: var(--primary);
}

.rdv-prestation-icon {
    font-size: 2rem;
}

.rdv-prestation-name {
    flex: 1;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.rdv-prestation-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Champs date/heure */
.rdv-datetime {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.rdv-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.rdv-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rdv-field-full {
    grid-column: 1 / -1;
}

.rdv-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.rdv-field input,
.rdv-field select,
.rdv-field textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.rdv-field input:focus,
.rdv-field select:focus,
.rdv-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.rdv-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* Récapitulatif */
.rdv-recap {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: none;
}

.rdv-recap.visible {
    display: block;
}

.rdv-recap-content {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.95rem;
}

/* Bouton submit */
.rdv-actions {
    margin-top: 10px;
}

.rdv-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rdv-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.rdv-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.rdv-info {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
}

/* Message de succès */
.rdv-success {
    text-align: center;
    padding: 50px 30px;
}

.rdv-success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    margin: 0 auto 25px;
}

.rdv-success h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 10px;
}

.rdv-success p {
    color: #666;
    margin-bottom: 8px;
}

.rdv-close-btn {
    margin-top: 25px;
    padding: 14px 40px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rdv-close-btn:hover {
    transform: translateY(-2px);
}

/* Modal responsive */
@media (max-width: 600px) {
    .rdv-modal-content {
        margin: 20px auto;
        border-radius: 12px;
    }

    .rdv-header {
        padding: 25px 20px 15px;
    }

    .rdv-header h2 {
        font-size: 1.5rem;
    }

    .rdv-form {
        padding: 20px;
    }

    .rdv-datetime,
    .rdv-fields {
        grid-template-columns: 1fr;
    }

    .rdv-prestation-content {
        padding: 15px;
    }

    .rdv-prestation-icon {
        font-size: 1.5rem;
    }

    .rdv-prestation-name {
        font-size: 0.95rem;
    }
}
