/* ==========================================================
   JMC-Informatique — style.css (v1.2 — fichier unique)
   ========================================================== */

/* =========================
   VARIABLES
   ========================= */

:root {
    --bg-dark:  #0b0f1a;
    --bg-light: #12182b;
    --neon:     #00ffa6;
    --text:     #eaeaea;
    --muted:    #a0a0a0;
}

/* =========================
   RESET & BASE
   ========================= */

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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

a {
    color: var(--neon);
    text-decoration: none;
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
}

/* =========================
   HEADER
   ========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(11,15,26,0.92);
    border-bottom: 1px solid rgba(0,255,166,0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    min-height: 86px;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.45));
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    position: relative;
    display: inline-block;
    padding: 10px 12px;
    color: var(--neon);
    text-decoration: none;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--neon);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,255,166,0.55);
    transition: width .25s ease, opacity .25s ease;
    opacity: 0;
}

.nav a:hover::after {
    width: 100%;
    opacity: .6;
}

.nav a.active::after {
    width: 100%;
    opacity: 1;
}

.nav a.active {
    text-shadow: 0 0 12px rgba(0,255,166,0.25);
}

.burger {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* =========================
   HERO
   ========================= */

.hero {
    padding: 60px 0;
    text-align: center;
}

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

.hero p {
    color: var(--muted);
    margin: 20px 0;
}

.hero a {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--neon);
    border-radius: 30px;
    transition: 0.3s;
}

.hero a:hover {
    background: var(--neon);
    color: #000;
}

/* =========================
   SECTIONS
   ========================= */

section {
    padding: 40px 0;
}

.about,
.services-preview {
    text-align: center;
}

/* =========================
   CARDS
   ========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,255,166,0.2);
    transition: 0.3s;
}

.services-preview .card p {
    text-align: justify;
    hyphens: auto;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon);
}

/* Cards avec image (galerie) */
.card-img {
    padding: 0;
    overflow: hidden;
}

.gimg {
    width: 100%;
    display: block;
    cursor: pointer;
}

/* =========================
   GALERIE — LIGHTBOX
   ========================= */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 14px;
    border: 1px solid rgba(0,255,166,0.35);
}

/* =========================
   REVIEWS
   ========================= */

.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-link {
    color: var(--neon);
    font-size: 0.95rem;
}

.ghost-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid rgba(0,255,166,0.4);
    border-radius: 30px;
    color: var(--neon);
    font-size: 0.95rem;
    transition: 0.25s;
}

.ghost-btn:hover {
    background: rgba(0,255,166,0.08);
    border-color: var(--neon);
}

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

.review {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: justify;
    hyphens: auto;
}

.stars {
    color: gold;
    margin-bottom: 10px;
}

/* =========================
   TARIFS
   ========================= */

.tarifs-intro {
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.8;
}

.cards-mt {
    margin-top: 30px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    background: #050812;
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.9fr 1.3fr;
    gap: 24px;
    align-items: start;
}

.footer-col {
    line-height: 1.9;
}

.footer strong {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(0,255,166,0.35);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--neon);
    text-decoration: none;
    transition: 0.2s ease;
}

.social-link:hover {
    border-color: var(--neon);
    box-shadow: 0 0 12px rgba(0,255,166,0.35);
    transform: translateY(-1px);
}

.social-ico {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-copyright {
    justify-self: end;
    text-align: right;
    line-height: 1.6;
}

.footer-credit,
.footer-host {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: rgba(0,255,166,0.65);
    letter-spacing: 0.4px;
}

/* =========================
   GOOGLE MAP
   ========================= */

.gmap {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    border: 1px solid rgba(0,255,166,0.25);
    box-shadow: 0 0 30px rgba(0,255,166,0.12);
    overflow: hidden;
    margin-top: 20px;
}

.map-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* =========================
   FAQ
   ========================= */

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-cards {
    margin-top: 15px;
}

.faq-item {
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item summary i, .faq-item summary .ti-icon {
    font-size: 1.2rem;
    color: #00ffa6;
    flex-shrink: 0;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--neon);
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--neon);
}

/* =========================
   FORMULAIRE DEVIS
   ========================= */

.devis-section {
    padding: 20px 0 80px;
}

.devis-section .section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.devis-section .section-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.devis-section .section-intro p {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.form-hint {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 0 16px;
}

#devisForm {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,166,0.2);
    border-radius: 20px;
    padding: 40px 36px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    overflow: hidden;
}

#devisForm:focus-within {
    border-color: rgba(0,255,166,0.45);
}

.form-grid,
#devisForm > div {
    display: grid;
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--muted);
    letter-spacing: 0.3px;
}

.required-star {
    color: var(--neon);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0,255,166,0.22);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon);
    box-shadow: 0 0 12px rgba(0,255,166,0.18);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300ffa6' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #12182b;
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.turnstile-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin: 6px 0;
}

.cf-turnstile {
    flex-shrink: 0;
}

.honeypot {
    display: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.05rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    border: 2px solid var(--neon);
    background: transparent;
    color: var(--neon);
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    margin-top: 4px;
}

.btn-submit:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 20px rgba(0,255,166,0.35);
}

.form-message {
    text-align: center;
    margin-top: 14px;
    font-size: 0.95rem;
    min-height: 22px;
}

.form-message.success { color: var(--neon); }
.form-message.error   { color: #ff5f5f; }

.devis-note {
    text-align: center;
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.85rem;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1200px) {
    .cards { grid-template-columns: repeat(3, minmax(220px, 1fr)); }
}

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
    .footer-copyright {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 900px) {
    .cards { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 768px) {
    .nav { display: none; }

    .nav.active {
        display: block;
        position: absolute;
        top: 92px;
        right: 20px;
        background: #0b0f1a;
        padding: 20px;
        border-radius: 10px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .burger { display: block; }

    .gmap { height: 320px; }
}

@media (max-width: 640px) {
    #devisForm { padding: 24px 16px; }
    .form-grid { overflow: hidden; }
    .form-row  { grid-template-columns: 1fr; }
}

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social { justify-content: center; }

    .footer-copyright {
        justify-self: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .devis-section .section-intro h2 { font-size: 1.4rem; }
}

@media (max-width: 360px) {
    .turnstile-wrapper { justify-content: flex-start; }
    .cf-turnstile {
        transform: scale(0.78);
        transform-origin: left center;
    }
}

@media (min-width: 361px) and (max-width: 420px) {
    .cf-turnstile {
        transform: scale(0.88);
        transform-origin: center center;
    }
}

/* ==========================================================
   TARIFS PAGE — à ajouter à la fin de style.css
   ========================================================== */

/* --- Hero tarifs --- */
.tarifs-hero {
  text-align: center;
  padding: 60px 0 28px;
  margin-bottom: 35px;
}

.tarifs-hero::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: rgba(0,255,166,0.6);
  margin: 28px auto 0;
  border-radius: 2px;
}

/* Séparateur vert uniquement sur la page tarifs */


.tarifs-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.tarifs-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.1;
}

.tarifs-hero h1 span {
  color: var(--neon);
  text-shadow: 0 0 20px rgba(0,255,166,0.4);
}

.tarifs-hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Section labels --- */
.section-neon-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  opacity: 0.85;
  margin-bottom: 18px;
}

/* --- Rates grid --- */
.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.rate-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,166,0.22);
  border-radius: 15px;
  padding: 24px 28px;
  transition: border-color 0.25s, transform 0.2s;
}

.rate-card:hover {
  border-color: var(--neon);
  transform: translateY(-3px);
}

.rate-card.featured {
  border-color: rgba(0,255,166,0.5);
}

.rate-badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid rgba(0,255,166,0.3);
  color: var(--neon);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.rate-badge.urgent {
  border-color: rgba(255,100,80,0.4);
  color: #ff8066;
}

.rate-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 14px rgba(0,255,166,0.3);
}

.rate-price.urgent-price {
  color: #ff8066;
  text-shadow: 0 0 14px rgba(255,100,80,0.3);
}

.rate-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

.rate-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

/* --- Info pills --- */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.info-pill {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,166,0.18);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.info-pill strong {
  display: block;
  color: var(--neon);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
}

/* --- Travel grid --- */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.travel-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,166,0.2);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  transition: border-color 0.25s, transform 0.2s;
}

.travel-item:hover {
  border-color: var(--neon);
  transform: translateY(-3px);
}

.travel-item.free {
  border-color: rgba(0,255,166,0.55);
}

.travel-zone {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.travel-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.travel-item.free .travel-price {
  color: var(--neon);
  text-shadow: 0 0 10px rgba(0,255,166,0.4);
}

/* --- Section divider --- */
.neon-divider {
  border: none;
  width: 60px;
  height: 2px;
  background: rgba(0,255,166,0.6);
  margin: 50px auto;
  border-radius: 2px;
  display: block;
}

/* --- Pack section hero --- */
.pack-section-hero {
  text-align: center;
  margin-bottom: 36px;
}

.pack-section-hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.15;
}

.pack-section-hero p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
}

/* --- Packs grid --- */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.pack-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,166,0.22);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.pack-card:hover {
  border-color: rgba(0,255,166,0.65);
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0,255,166,0.1);
}

.pack-card.popular {
  border-color: var(--neon);
  box-shadow: 0 0 25px rgba(0,255,166,0.14);
}

.pack-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.popular-badge {
  font-size: 10px;
  border: 1px solid rgba(0,255,166,0.5);
  color: var(--neon);
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pack-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pack-tagline {
  font-size: 0.82rem;
  color: var(--muted);
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pack-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 16px rgba(0,255,166,0.3);
  line-height: 1.1;
}

.pack-price-suffix {
  font-size: 0.9rem;
  color: var(--muted);
}

.pack-divider {
  border: none;
  border-top: 1px solid rgba(0,255,166,0.12);
}

.pack-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pack-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.pack-feature .feat-icon {
  color: var(--neon);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pack-feature .feat-icon.cross {
  color: rgba(255,255,255,0.15);
}

.pack-cta {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid rgba(0,255,166,0.4);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  color: var(--neon);
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s, box-shadow 0.25s, color 0.25s;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pack-card.popular .pack-cta {
  border-color: var(--neon);
  background: var(--neon);
  color: #000;
}

.pack-cta:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 20px rgba(0,255,166,0.35);
}

.pack-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,166,0.18);
  border-radius: 12px;
  line-height: 1.7;
}

/* --- Other services cards --- */
.services-alt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-alt-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,255,166,0.2);
  border-radius: 15px;
  padding: 24px 20px;
  transition: border-color 0.25s, transform 0.2s;
}

.service-alt-card:hover {
  border-color: var(--neon);
  transform: translateY(-5px);
}

.service-alt-icon {
  font-size: 1.8rem;
  color: var(--neon);
  margin-bottom: 12px;
}

.service-alt-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.service-alt-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Map note --- */
.zone-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 18px;
  line-height: 1.6;
}

.zone-note a {
  color: var(--neon);
}

/* ==========================================================
   RESPONSIVE — TARIFS PAGE
   ========================================================== */

@media (max-width: 900px) {
  .packs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .packs-grid .pack-card:last-child {
    grid-column: span 2;
  }
  .services-alt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rates-grid      { grid-template-columns: 1fr; }
  .info-row        { grid-template-columns: 1fr; }
  .travel-grid     { grid-template-columns: repeat(2, 1fr); }
  .tarifs-hero h1  { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .packs-grid                        { grid-template-columns: 1fr; }
  .packs-grid .pack-card:last-child  { grid-column: span 1; }
  .services-alt-grid                 { grid-template-columns: 1fr; }
  .tarifs-hero h1                    { font-size: 1.5rem; }
  .pack-section-hero h2              { font-size: 1.4rem; }
}

/* MAP — effet vitre + glow interne (premium) */
.gmap {
  position: relative;
}



.gmap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 1px rgba(0,255,166,0.20),
    inset 0 0 30px rgba(0,255,166,0.10);
}

.gmap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(0,255,166,0.10), transparent 60%);
  mix-blend-mode: screen;
  opacity: .9;
}

/* ========== PREMIUM++ HOME ========== */

.hero-premium{
  position:relative;
  overflow:hidden;
}

.hero-premium::before{
  content:"";
  position:absolute;
  inset:-120px;
  background:
    radial-gradient(700px 350px at 20% 15%, rgba(0,255,166,.14), transparent 60%),
    radial-gradient(650px 320px at 85% 30%, rgba(0,170,255,.10), transparent 60%),
    radial-gradient(520px 260px at 55% 95%, rgba(0,255,166,.08), transparent 60%);
  pointer-events:none;
  filter: blur(0px);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
}

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

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  opacity:.9;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.82rem;
  margin:0 0 12px 0;
}

.eyebrow-dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(0,255,166,.95);
  box-shadow: 0 0 18px rgba(0,255,166,.45);
}

.neon-word{
  color: #00ffa6;
  text-shadow: 0 0 18px rgba(0,255,166,.35);
}

.hero-sub{
  max-width: 52ch;
  opacity: .92;
  margin-top: 10px;
}

.hero-ctas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.btn-primary i,
.btn-primary .ti-icon,
.btn-secondary i,
.btn-secondary .ti-icon,
.ghost-btn i,
.ghost-btn .ti-icon{
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: -2px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}

.trust-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .95rem;
}

.trust-pill i, .trust-pill .ti-icon{
  color:#00ffa6;
  text-shadow: 0 0 14px rgba(0,255,166,.25);
}

.hero-card-glow{
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  position:relative;
}

.hero-card-glow::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:24px;
  background: radial-gradient(220px 120px at 35% 15%, rgba(0,255,166,.22), transparent 60%);
  pointer-events:none;
  mix-blend-mode: screen;
  opacity: .9;
}

.hero-metric{
  display:flex;
  gap:12px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 10px;
  position:relative;
  z-index: 1;
}

.metric-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(0,255,166,.10);
  border: 1px solid rgba(0,255,166,.22);
  box-shadow: 0 0 20px rgba(0,255,166,.10);
}

.metric-icon i, .metric-icon .ti-icon{
  font-size: 1.35rem;
  color:#00ffa6;
}

.metric-title{ font-weight: 600; }
.metric-sub{ opacity:.82; font-size: .95rem; }

.hero-mini-note{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(0,255,166,.25);
  position:relative;
  z-index: 1;
}

.hero-mini-note i, .hero-mini-note .ti-icon{ color:#00ffa6; }

/* Section head */
.section-head{
  max-width: 70ch;
}

.section-sub{
  opacity: .9;
  margin-top: 8px;
}

/* WHY */
.why-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px){ .why-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr;} }

.why-card{
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.why-card:hover{
  transform: translateY(-3px);
  border-color: rgba(0,255,166,.25);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.why-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(0,255,166,.10);
  border: 1px solid rgba(0,255,166,.22);
  margin-bottom: 10px;
}
.why-ico i, .why-ico .ti-icon{ color:#00ffa6; font-size: 1.4rem; }

/* SERVICES premium cards */
.services-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}

.cards-premium .card-link{
  text-decoration:none;
  color: inherit;
  display:block;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cards-premium .card-link:hover{
  transform: translateY(-4px);
  border-color: rgba(0,255,166,.28);
  box-shadow: 0 26px 75px rgba(0,0,0,.36);
}

.card-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(0,255,166,.10);
  border: 1px solid rgba(0,255,166,.22);
  box-shadow: 0 0 22px rgba(0,255,166,.10);
  margin-bottom: 12px;
}
.card-ico i, .card-ico .ti-icon{
  font-size: 1.45rem;
  color:#00ffa6;
}

.services-cta-row{
  margin-top: 16px;
  display:flex;
  justify-content:center;
}

/* PROCESS */
.process-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){ .process-grid{ grid-template-columns: 1fr; } }

.process-step{
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.step-nb{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(0,255,166,.12);
  border: 1px solid rgba(0,255,166,.25);
  color: #00ffa6;
  font-weight: 700;
  margin-bottom: 10px;
}



/* Google review link footer */
.google-review-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--neon);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}
.google-review-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Reviews head with Google link */
.reviews-head-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.reviews-head-left .google-review-link {
    font-size: 0.9rem;
    margin-top: 0;
}

/* Email footer mailto link */
.footer-mail {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-mail:hover {
    color: var(--neon);
}

/* Page supplémentaire dans les packs */
.pack-feature .feat-icon.ti-plus {
    color: #7cb9ff;
}

/* Hero centré (index uniquement) */
.hero-grid-center {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}
.hero-grid-center .hero-right {
    display: none;
}
.hero-grid-center .eyebrow {
    justify-content: center;
}
.hero-grid-center .hero-sub {
    margin-left: auto;
    margin-right: auto;
}
.hero-grid-center .hero-ctas {
    justify-content: center;
}
.hero-grid-center .trust-row {
    justify-content: center;
}

/* Section-head centré */
.section-head-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* =====================================================
   SVG Sprite icons — remplace Tabler Icons webfont
   ===================================================== */
.ti-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

/* feat-icon explicit size for SVG (font-size ne s'applique pas aux SVG) */
.pack-feature .feat-icon.ti-icon {
  width: 14px;
  height: 14px;
}

/* Quand .hero contient .tarifs-hero, le padding est géré par .tarifs-hero lui-même */
.hero:has(.tarifs-hero) {
  padding: 0;
}


/* ===== TARIFS — Nouveau design ===== */
.rate-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 16px 0;
}

.rate-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
}

.rate-info-row .ti-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 12px;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  color: var(--text);
}

.pay-method .ti-icon {
  color: var(--neon);
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.pay-discount {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0,255,166,0.12);
  color: var(--neon);
}

.payment-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-conditions .rate-info-row {
  margin-top: 0;
  flex: 1;
  min-width: 200px;
}

/* SVG overlay sur la carte (cercle zone 15km) */
.gmap-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ===== Politique de confidentialité ===== */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.privacy-block:last-child {
  border-bottom: none;
}

.privacy-block h2 {
  font-size: 1.1rem;
  color: var(--neon);
  margin-bottom: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.privacy-block p,
.privacy-block li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.privacy-block ul {
  padding-left: 0;
  margin-top: 8px;
  list-style-position: inside;
}

.privacy-block li {
  margin-bottom: 6px;
}

.privacy-block a {
  color: var(--neon);
  text-decoration: none;
}

.footer-privacy {
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-privacy:hover {
  opacity: 1;
  color: var(--neon);
}

/* ===== Services — cards expandables ===== */
.services-expand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s;
}

.svc-card:hover { border-color: rgba(0,255,166,0.25); }
.svc-card.active { border-color: rgba(0,255,166,0.6); }

.svc-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.svc-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,255,166,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-ico .ti-icon { width: 1.3em; height: 1.3em; color: var(--neon); }

.svc-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.svc-chevron {
  width: 0.9em;
  height: 0.9em;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.svc-card.active .svc-chevron {
  transform: rotate(180deg);
  color: var(--neon);
}

.svc-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.3s ease;
}

.svc-expand.open {
  max-height: 300px;
  margin-top: 12px;
}

.svc-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 0 10px;
}

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

.svc-list li {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.svc-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon);
  flex-shrink: 0;
  margin-top: 5px;
}

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

@media (max-width: 500px) {
  .services-expand-grid { grid-template-columns: 1fr; }
}

/* ===== Why cards v2 — icône + titre horizontal ===== */
.why-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.why-card-v2 {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-ico-v2 {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(0,255,166,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-ico-v2 .ti-icon {
  width: 1.2em;
  height: 1.2em;
  color: var(--neon);
}

.why-card-v2 h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.why-card-v2 p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
}

/* ===== Services cards v2 — icône + titre horizontal ===== */
.cards-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.card-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1rem !important;
  text-decoration: none;
}

.card-v2-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-v2 .card-ico {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-bottom: 0 !important;
}

.card-v2 h3 {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  text-align: left !important;
}

.card-v2 p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
  text-align: left !important;
}

/* ===== Process steps — numéro + titre côte à côte ===== */
.process-step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.process-step-top h3 {
  margin: 0;
  font-size: 0.95rem;
}

/* ===== Travel grid v2 — avec détail et exemple ===== */
.travel-detail {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 6px;
}

.travel-example {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-style: italic;
}

/* ===== Footer legal links ===== */
.footer-legal-links {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
}

/* ===== RESPONSIVE MOBILE — corrections globales ===== */

@media (max-width: 768px) {
  /* Index — cards services v2 */
  .cards-v2 { grid-template-columns: repeat(2, 1fr) !important; }

  /* Index & creation-web — why-grid-v2 */
  .why-grid-v2 { grid-template-columns: repeat(2, 1fr) !important; }

  /* Tarifs — travel-grid */
  .travel-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Tarifs — payment-card methods */
  .payment-methods { grid-template-columns: 1fr !important; }

  /* Creation-web — packs */
  .packs-grid { grid-template-columns: 1fr !important; }

  /* Process steps */
  .process-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  /* Mobile étroit — tout en 1 colonne */
  .cards-v2 { grid-template-columns: 1fr !important; }
  .why-grid-v2 { grid-template-columns: 1fr !important; }
  .travel-grid { grid-template-columns: 1fr !important; }

  /* Hero cards à droite */
  .hero-card-glow { padding: 1rem; }
  .hero-metric { gap: 10px; }

  /* Tarifs rates-grid */
  .rates-grid { grid-template-columns: 1fr !important; }
  .info-row { grid-template-columns: 1fr !important; }

  /* Payment card */
  .payment-card { padding: 1rem; }
  .payment-methods { grid-template-columns: 1fr !important; gap: 8px; }

  /* Pack cards */
  .pack-card { padding: 1.2rem 1rem; }
}