/* --- VARIABLES & RESET --- */
:root {
    --bg-dark: #0b0d15;
    --glow-violet: rgba(120, 30, 150, 0.25);
    --glow-blue: rgba(0, 150, 255, 0.15);
    --accent-cyan: #00f2ff;
    --accent-pink: #ff007f;
    --gradient-text: linear-gradient(90deg, #00f2ff, #bc13fe, #ff007f);
    --text-main: #ffffff;
    --text-secondary: #bcccdb;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --scrollbar-color: #00f2ff;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, var(--glow-violet) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, var(--glow-blue) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(50, 20, 80, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, var(--glow-violet) 0%, transparent 50%);
    background-attachment: fixed;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- UTILITAIRES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-darker { background-color: rgba(0,0,0,0.2); }

/* TITRES */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient-text);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}
.text-left { margin-left: 0; margin-right: auto; text-align: left; }
.text-left::after { left: 0; transform: none; }
.accent { color: var(--accent-cyan); text-shadow: 0 0 15px rgba(0, 242, 255, 0.4); }

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: var(--accent-cyan);
    color: #000;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: #fff;
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--accent-pink);
}
.btn-secondary:hover {
    background: var(--accent-pink);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
}
.cta-buttons { display: flex; justify-content: center; gap: 15px; }

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 13, 21, 0.8);
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
header.scrolled { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-secondary);
}
.nav-links a:hover { color: var(--accent-cyan); text-shadow: 0 0 8px var(--accent-cyan); }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: #fff; }
.hamburger i.fa-times { color: var(--accent-pink); }

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-main);
    transition: var(--transition);
}
.logo:hover { transform: scale(1.05); }
.logo .accent { color: var(--accent-cyan); text-shadow: 0 0 10px rgba(0, 242, 255, 0.6); }

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
}
.hero-content { text-align: center; max-width: 800px; }
.hero h1 { font-size: 3.8rem; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 30px; }

/* ======================================= */
/* --- SERVICES (GLASSMORPHISM)          --- */
/* ======================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.service-card--web {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-pink);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.2);
    background: rgba(255, 255, 255, 0.05);
}
.icon-box {
    font-size: 2.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 15px; color: #fff; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ✦ CARTE CRÉATION WEB — styles spécifiques */
.service-card--web {
    border-color: rgba(0, 242, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.service-card--web::before {
    content: 'NEW';
    position: absolute;
    top: 16px;
    right: -24px;
    background: var(--accent-cyan);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 28px;
    transform: rotate(45deg);
}
.service-card--web:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}
.service-web-list {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.service-web-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.service-web-list li i {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.service-web-list li span { line-height: 1.4; }
.service-web-cta {
    font-size: 0.78rem !important;
    color: rgba(0, 242, 255, 0.6) !important;
    margin-top: 12px !important;
    font-style: italic;
    text-align: center;
}

/* ABOUT */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text p { margin-bottom: 20px; color: var(--text-secondary); }
.stats { margin-top: 30px; display: flex; gap: 20px; }
.stats li {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    border-left: 3px solid var(--accent-cyan);
    backdrop-filter: blur(5px);
}

/* TERMINAL */
.tech-placeholder {
    width: 100%;
    height: 320px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', monospace;
}
.tech-placeholder::before { content: none; }
.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.terminal-title { margin-left: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 1px; }
.terminal-body {
    flex: 1;
    padding: 16px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.terminal-line { font-size: 0.8rem; color: rgba(255,255,255,0.5); opacity: 0; animation: lineAppear 0.3s forwards; }
.terminal-line:nth-child(1)  { animation-delay: 0.2s; }
.terminal-line:nth-child(2)  { animation-delay: 0.6s; }
.terminal-line:nth-child(3)  { animation-delay: 1.1s; }
.terminal-line:nth-child(4)  { animation-delay: 1.5s; }
.terminal-line:nth-child(5)  { animation-delay: 1.8s; }
.terminal-line:nth-child(6)  { animation-delay: 2.1s; }
.terminal-line:nth-child(7)  { animation-delay: 2.4s; }
.terminal-line:nth-child(8)  { animation-delay: 2.7s; }
.terminal-line:nth-child(9)  { animation-delay: 3.0s; }
.terminal-line:nth-child(10) { animation-delay: 3.4s; }
.terminal-line:nth-child(11) { animation-delay: 3.8s; }
.terminal-line .prompt { color: var(--accent-cyan); }
.terminal-line .cmd    { color: #fff; }
.terminal-line .ok     { color: #28c840; font-weight: bold; }
.terminal-line .cursor { color: var(--accent-cyan); animation: blink 1s step-end infinite; }

@keyframes lineAppear {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ======================================= */
/* --- CONTACT                           --- */
/* ======================================= */
.contact-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.18);
    border-radius: 10px;
    padding: 1rem 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.contact-banner-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.contact-banner-item i { color: var(--accent-cyan); font-size: 1.05rem; }
.contact-banner-divider { width: 1px; height: 28px; background: rgba(0, 242, 255, 0.2); }

.contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
.info-item i { font-size: 1.2rem; color: var(--accent-pink); margin-right: 15px; }

.contact-form { display: flex; flex-direction: column; align-items: center; }
.contact-form .form-group { width: 100%; }
.contact-form .btn { margin-top: 20px; }

.form-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.82rem;
    opacity: 0.75;
    text-align: center;
}
.form-reassurance i { color: var(--accent-cyan); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 5px; font-size: 0.9rem; color: var(--accent-cyan); }
input, textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); font-size: 0.85rem; }
input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

/* ======================================= */
/* --- MENTIONS LÉGALES                  --- */
/* ======================================= */
.mentions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.mention-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1.5rem;
}
.mention-block h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}
.mention-block h4 i { color: var(--accent-cyan); }
.mention-block p { font-size: 0.88rem; line-height: 1.7; opacity: 0.75; margin-bottom: 0.3rem; }

/* ======================================= */
/* --- FOOTER                            --- */
/* ======================================= */
footer {
    padding: 40px 0;
    background: rgba(5, 7, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-info { flex: 1; }
.footer-info p { font-size: 0.95rem; color: var(--text-secondary); }
.footer-legal-line {
    font-size: 0.78rem;
    opacity: 0.6;
    margin-top: 5px;
    letter-spacing: 0.3px;
}
.footer-links { display: flex; align-items: center; }
.footer-links a {
    font-size: 0.8rem;
    opacity: 0.65;
    text-decoration: underline;
    transition: opacity 0.2s;
    color: var(--text-secondary);
}
.footer-links a:hover { opacity: 1; }
.socials { display: flex; gap: 20px; }
.socials a { font-size: 1.4rem; transition: var(--transition); color: var(--text-secondary); }
.socials a:hover { color: var(--accent-cyan); }

/* ======================================= */
/* --- SCROLLBAR DYNAMIQUE              --- */
/* ======================================= */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-dark); border-left: 1px solid rgba(255, 255, 255, 0.05); }
::-webkit-scrollbar-thumb { background: var(--scrollbar-color); border-radius: 6px; border: 3px solid var(--bg-dark); transition: background-color 0.5s ease; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan); box-shadow: 0 0 10px var(--accent-cyan); }

/* ======================================= */
/* --- GALERIE APERÇU (index.html)       --- */
/* ======================================= */
.galerie-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -40px;
    margin-bottom: 50px;
    font-size: 1rem;
}
.apercu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.apercu-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.06);
}
.apercu-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.apercu-item:hover img { transform: scale(1.06); }
.apercu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.apercu-overlay span { color: #fff; font-size: 0.9rem; font-weight: 600; }
.apercu-item:hover .apercu-overlay { opacity: 1; }
.galerie-cta { text-align: center; margin-top: 10px; }
.galerie-cta .btn { display: inline-flex; align-items: center; gap: 8px; }

/* ======================================= */
/* --- MEDIA QUERIES                     --- */
/* ======================================= */
@media (max-width: 1024px) {
    .container { padding: 0 25px; }
    .hero h1 { font-size: 3rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0b0d15;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .nav-links.active { right: 0; }
    .section-title, .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .cta-buttons { flex-direction: column; gap: 10px; }
    .cta-buttons .btn { width: 100%; margin: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 25px; }
    .about-container, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .about-image { display: none; }
    .about-text { text-align: center; }
    .text-left { text-align: center; }
    .text-left::after { left: 50%; transform: translateX(-50%); }
    .stats { justify-content: center; flex-wrap: wrap; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .contact-banner { gap: 1rem; }
    .contact-banner-divider { display: none; }
    .apercu-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .section-title { font-size: 1.6rem; margin-bottom: 40px; }
    .hero h1 { font-size: 1.6rem; }
    .btn { padding: 10px 20px; font-size: 0.8rem; }
    .stats { flex-direction: column; align-items: stretch; }
}

/* ANIMATIONS */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: all 0.8s ease-out; }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0); }
.reveal-text { opacity: 0; animation: fadeUp 1s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ======================================= */
/* --- GALERIE CTA GROS BOUTON          --- */
/* ======================================= */
.galerie-cta-big {
    text-align: center;
    margin-top: 50px;
}
.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 44px;
    font-size: 1.08rem;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(188, 19, 254, 0.08));
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.1);
    font-family: var(--font-main);
}
.btn-gallery:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 45px rgba(0, 242, 255, 0.35);
    transform: translateY(-3px);
}
.btn-gallery i { font-size: 1.15rem; }

/* ======================================= */
/* --- SELECT DROPDOWN                   --- */
/* ======================================= */
select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300f2ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}
select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
}
select option {
    background: #0b0d15;
    color: #fff;
    padding: 10px;
}

/* ======================================= */
/* --- MODALE RÉALISATION (La Bulle)     --- */
/* ======================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px);
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-content {
    background: rgba(15, 17, 28, 0.98);
    border: 1px solid rgba(0, 242, 255, 0.15);
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow:
        0 0 60px rgba(0, 242, 255, 0.1),
        0 0 120px rgba(120, 30, 150, 0.08);
    animation: modalAppear 0.35s ease-out;
}
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: transparent; }
.modal-content::-webkit-scrollbar-thumb { background: rgba(0, 242, 255, 0.3); border-radius: 3px; }

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

.modal-header { position: relative; }
.modal-header img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.modal-close:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    transform: rotate(90deg);
}

.modal-body { padding: 30px; }

.modal-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-cyan);
    background: rgba(0, 242, 255, 0.08);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 242, 255, 0.15);
}

.modal-body h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 700;
}

.modal-description {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.12);
    border-radius: 12px;
    margin-bottom: 26px;
}
.modal-price i { color: var(--accent-cyan); font-size: 1.2rem; }
.modal-price span { font-size: 1.15rem; font-weight: 600; color: #fff; }

.modal-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.modal-cta .btn {
    flex: 1;
    text-align: center;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- MODALE & BOUTON RESPONSIVE --- */
@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
        border-radius: 16px;
        margin: 10px;
    }
    .modal-header img { height: 200px; }
    .modal-body { padding: 22px; }
    .modal-body h2 { font-size: 1.3rem; }
    .modal-cta { flex-direction: column; }
    .modal-cta .btn { min-width: auto; }
    .btn-gallery { padding: 16px 28px; font-size: 0.92rem; }
}
@media (max-width: 480px) {
    .modal-header img { height: 160px; }
    .modal-body { padding: 16px; }
    .modal-price { flex-direction: column; align-items: flex-start; gap: 6px; }
    .btn-gallery { padding: 14px 22px; font-size: 0.82rem; flex-direction: column; gap: 6px; }
}