/* =========================================================
   Conciergerie by HC — Clean, Lux, Cohesive Stylesheet
   Palette centered on #d4ccbf, airy spacing, gentle motion
   ========================================================= */

/* ---------- Variables */
:root{
  /* Brand */
  --brand:#d9cfa7;            /* soft gold */
  --brand-2:#0f172a;          /* deep night blue */
  --accent:#4f46e5;           /* chic violet (CTA) */

  /* Neutrals */
  --bg:#d4ccbf;               /* page background */
  --surface:#ffffff;          /* cards & surfaces */
  --ink:#111111;              /* body text */
  --muted:#6b7280;            /* secondary text */

  /* Effects */
  --shadow:0 10px 25px rgba(0,0,0,.08);
  --shadow-lg:0 16px 38px rgba(0,0,0,.12);

  /* Layout scale */
  --maxw:1100px;
  --space-1:6px;
  --space-2:10px;
  --space-3:14px;
  --space-4:18px;
  --space-5:24px;
  --space-6:32px;
  --space-7:40px;
  --space-8:60px;

  /* Sections */
  --section-y:50px;
  --radius:16px;
  --radius-lg:22px;

  /* Service cards tint */
  --royal:#2f3b43;
}

/* ---------- Base */
*{ box-sizing:border-box }
html,body{
  margin:0; padding:0;
  font-family:'Orkney',Poppins,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  font-weight:300; /* Orkney Light */
  color:var(--ink);
  background:var(--bg);
}
img{ max-width:100%; display:block }
a{ color:var(--accent); text-decoration:none }

/* ---------- Layout helpers */
.container{ width:min(var(--maxw),92%); margin:auto }
.row-between{ display:flex; justify-content:space-between; align-items:center }
.row-center{ display:flex; gap:30px; justify-content:center; align-items:center; flex-wrap:wrap }

/* Grids */
.grid-2, .grid-3, .grid-4{ display:grid; gap:24px }
.grid-2{ grid-template-columns:repeat(2,1fr) }
.grid-3{ grid-template-columns:repeat(3,1fr); gap:36px }
.grid-4{ grid-template-columns:repeat(4,1fr) }
@media (max-width:900px){
  .grid-4,.grid-3,.grid-2{ grid-template-columns:1fr }
}

.rounded{ border-radius:var(--radius) }
.tiny{ font-size:.8rem; color:var(--muted) }
.list-unstyled{ list-style:none; padding:0; margin:0 }

/* ---------- Buttons */
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  border:0; border-radius:14px; padding:12px 18px; cursor:pointer;
  box-shadow:var(--shadow); transition:transform .2s ease;
  font-family:'Orkney',Poppins,sans-serif; font-weight:500; /* Orkney medium pour les boutons */
}
.btn:hover{ transform:translateY(-2px) }
.btn-lg{ padding:14px 22px; font-weight:600 }
.btn-primary{
  background:linear-gradient(90deg,var(--accent),#7c3aed); color:#fff;
}
.btn-light{ background:#fff; color:#111 }
.btn-outline{ border:1px solid #ddd; background:transparent; color:#111 }

/* ---------- Icons */
.icon-xl{ font-size:34px; color:var(--accent) }
.icon-lg{ font-size:30px; color:var(--accent) }

/* ---------- Header / Nav */
.site-header{ position:sticky; top:0; background:#303030; border-bottom:1px solid #eee; z-index:20 }
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:10px 0 }
.brand img{ height:54px; object-fit:contain; filter:drop-shadow(0 6px 10px rgba(0,0,0,.06)) }
.nav{ display:flex; align-items:center; gap:16px }
.nav a{ color:#fff }

/* Burger */
.burger{ display:none; position:relative; width:42px; height:36px; border:0; background:transparent; cursor:pointer }
.burger span{
  position:absolute; left:6px; right:6px; height:3px; border-radius:3px;
  background:#bbb; transition:.25s; transform-origin:8px 1.5px;
}
.burger span:nth-child(1){ top:9px }
.burger span:nth-child(2){ top:16px }
.burger span:nth-child(3){ top:23px }
.burger.active span:nth-child(1){ transform:rotate(45deg); top:14px }
.burger.active span:nth-child(2){ opacity:0 }
.burger.active span:nth-child(3){ transform:rotate(-45deg); top:14px }

/* Mobile nav panel */
@media (max-width:900px){
  .burger{ display:block }
  .nav{
    position:fixed; top:64px; right:12px; left:12px;
    background:#303030; border:1px solid #e5e7eb; border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    padding:12px; transform:translateY(-20px) scale(.98);
    opacity:0; pointer-events:none; transition:transform .2s, opacity .2s;
    display:grid; grid-template-columns:1fr auto; gap:12px;
  }
  .nav.open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto }
  .nav .nav-links{ display:flex; flex-direction:column; gap:10px }
  .nav a.btn{ width:100%; justify-content:center }
  .site-header .header-inner{ padding:8px 0 }
}

/* Desktop nav */
@media (min-width:901px){
  .nav{ position:static; box-shadow:none; padding:0; border:0 }
  .nav .nav-links{ display:flex; align-items:center; gap:16px }
}

/* Active/neutral nav buttons */
.nav .btn{ border:1px solid transparent; background:transparent; color:#fff; padding:8px 16px; border-radius:12px; font-weight:500; transition:all .2s ease }
.nav .btn.btn-light{ border:1px solid rgba(255,255,255,.4) }
.nav .btn.btn-light:hover{ border-color:var(--brand); color:var(--brand) }
.nav .btn.btn-active{
  background:var(--brand); color:var(--brand-2); font-weight:600; border:1px solid var(--brand);
  box-shadow:0 0 12px rgba(217,207,167,.35);
}
.nav .btn.btn-active:hover{ box-shadow:0 0 20px rgba(217,207,167,.45); transform:translateY(-2px) }

/* ---------- Hero */
.hero{
  min-height:62vh; background-size:cover; background-position:center;
  display:flex; align-items:center; color:#fff; position:relative;
}
.hero::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(15,23,42,.55),rgba(15,23,42,.4)) }
.hero .hero-inner{ position:relative; z-index:2; padding:70px 0 }
.hero h1{ font-size:clamp(32px,5vw,54px); line-height:1.1 }
.hero p{ font-size:clamp(16px,2.2vw,20px); max-width:680px }
.hero.mini{ min-height:38vh }

/* Slideshow layers */
.hero.slideshow{ position:relative; overflow:hidden }
.hero.slideshow .hero-bg{ position:absolute; inset:0; background-size:cover; background-position:center; transition:opacity .8s ease; z-index:0; opacity:0 }
.hero.slideshow .hero-bg.current{ opacity:1 }
.hero.slideshow .hero-bg.next{ opacity:0 }

/* ---------- Sections / Headings */
.trust h2,.values h2,.qa h2,.pricing h2,.testimonials h2{ margin:30px 0 10px }

.handwritten-title{
  font-family:'Dancing Script', cursive;
  font-weight:600;
  font-size:clamp(1.6rem,4.2vw,2.4rem);
  color:#222;
  text-align:center;
}

/* ---------- Generic card */
.card{
  background:var(--surface);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}
.card.lift:hover{ transform:translateY(-6px) }

/* ---------- Services (Trust) */
.trust .card{
  background:var(--royal);
  color:#fff;
  border:0;
  box-shadow:var(--shadow); /* keep subtle depth */
}
.trust .card h3, .trust .card p{ color:#fff }
.trust .card .icon-xl{ color:#fff }
.trust .card p{ font-family:'Orkney',Poppins,sans-serif; font-weight:300; } /* Orkney light pour les descriptions des services */
/* hover: gentle lift only (no color/shadow changes) */
.trust .card.lift:hover{ transform:translateY(-6px) }

/* ---------- Values */
.values{ padding:var(--section-y) 0 }
.value-card{
  text-align:center; padding:40px 24px; border:1px solid #eee;
  border-radius:18px; background:#fff; box-shadow:var(--shadow);
  transition:transform .25s ease;
}
.value-card:hover{ transform:translateY(-6px) }
.value-card .value-icon{
  width:84px; height:84px; padding:16px; background:#fff; border-radius:50%;
  box-shadow:0 6px 16px rgba(0,0,0,.10); margin:0 auto 18px; object-fit:contain; display:block;
}
.value-card h3{ margin:8px 0 10px; color:var(--brand-2); font-weight:600 }
.value-card p{ color:#333; line-height:1.6; font-size:.95rem }

/* ---------- Accordion / Q&A */
.accordion details{
  background:#fff; border-radius:12px; padding:12px 16px; margin:8px 0; border:1px solid #eee; box-shadow:0 4px 12px rgba(0,0,0,.04)
}
.accordion summary{ cursor:pointer; font-weight:600; font-family:'Orkney',Poppins,sans-serif; font-weight:400; } /* Orkney normal pour les questions */
.accordion p{ font-family:'Orkney',Poppins,sans-serif; font-weight:300; } /* Orkney light pour les réponses */

/* ---------- Testimonials */
.testimonials{ background:linear-gradient(180deg,#fff,#f9fafb) }
.quote{ background:#fff; border-radius:16px; box-shadow:var(--shadow); padding:12px }
.quote img{ border-radius:12px; margin-bottom:8px }

.testimonial-feature{ background:transparent; padding:60px 0 }
.testimonial-feature .grid-2{
  display:grid; grid-template-columns:minmax(280px,1fr) minmax(340px,1.2fr);
  align-items:center; gap:80px;
}
@media (max-width:900px){
  .testimonial-feature .grid-2{ grid-template-columns:1fr; gap:22px; text-align:center }
}
.testimonial-img img{ border-radius:20px; box-shadow:var(--shadow) }
.testimonial-img h3{ color:var(--muted); font-size:.9rem; letter-spacing:1px; margin-bottom:10px; text-transform:uppercase }
.testimonial-img h2{ color:var(--brand-2); font-size:clamp(1.6rem,2.5vw,2.3rem); margin-bottom:20px; line-height:1.3 }

.testimonial-content{
  display:flex; flex-direction:column; gap:14px; max-width:65ch;
}
.testimonial-content p{ color:#333; line-height:1.8; margin:0; text-align:justify; text-justify:inter-word }
.signature{
  font-family:"Great Vibes","Dancing Script",cursive; font-size:28px; line-height:1; color:#222; font-weight:400; letter-spacing:.5px
}

/* Decorative quotes (subtle, luxurious) */
.testimonial-content{ position:relative; padding:30px 0 }
.testimonial-content::before,
.testimonial-content::after{
  content:""; position:absolute; color:var(--brand); opacity:.35; font-family:Georgia,"Times New Roman",serif; pointer-events:none;
}
.testimonial-content::before{ top:-20px; left:-10px; font-size:90px }
.testimonial-content::after{ bottom:-50px; right:0; font-size:90px }
@media (max-width:600px){
  .testimonial-content::before,.testimonial-content::after{ font-size:64px; opacity:.30 }
}

/* ---------- Partners strip */
.partners-strip{ background:transparent; padding:60px 0; text-align:center }
.partners-strip .container{
  display:flex; justify-content:center; align-items:center; gap:150px; flex-wrap:wrap;
}
.partners-strip img{
  max-height:50px; width:auto; object-fit:contain; opacity:.9;
  filter:grayscale(30%) brightness(.95);
  transition:transform .25s ease, opacity .25s ease, filter .25s ease;
}
.partners-strip img:hover{ transform:scale(1.05); opacity:1; filter:none }
@media (max-width:768px){
  .partners-strip{ padding:40px 0 }
  .partners-strip .container{ gap:40px }
  .partners-strip img{ max-height:38px }
}

/* ---------- CTA image block */
.cta-image{ position:relative; min-height:45vh; background-size:cover; background-position:center }
.cta-image .overlay{
  position:absolute; inset:0; background:rgba(15,23,42,.55);
  display:flex; flex-direction:column; align-items:center; justify-content:center; color:#fff; text-align:center; gap:18px;
}
@media (max-width:768px){ .cta-image .overlay{ padding:0 16px } }

/* ---------- Forms */
.form input,.form textarea{
  width:100%; padding:12px; border-radius:12px; border:1px solid #e5e7eb; outline:none;
}
.form input:focus,.form textarea:focus{ border-color:var(--accent); box-shadow:0 0 0 3px rgba(79,70,229,.15) }
.form label{ font-size:.9rem; color:#334155; margin-top:14px }

/* ---------- Pricing */
.pricing{ text-align:center; padding-bottom:20px }
.pricing .grid-2{
  justify-content:center; justify-items:center;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}
.pricing .price-card{
  width:min(560px,100%); margin-inline:auto; padding:24px; border-radius:15px; background:#fff; box-shadow:var(--shadow)
}
.pricing .price-card .price{ font-size:32px; font-weight:700; margin:12px 0 }
.price-card .badge{
  background:var(--brand); color:#1b1b1b; display:inline-block; padding:4px 10px; border-radius:999px; font-size:.8rem; margin-bottom:8px
}
.price-card.featured{ background:linear-gradient(180deg,#1f2937,#0b1224); color:#fff; border:1px solid #28324a }
.pricing .price-card ul{ text-align:left; display:inline-block }

/* ---------- Footer */
.site-footer{ background:#0b1224; color:#d1d5db; padding:30px 0 }
.site-footer h4,.site-footer h5{ color:#fff; margin:0 0 8px }
.site-footer .btn-outline{ color:#fff; border-color:#334155 }
.site-footer .grid-4{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  justify-items:center; text-align:center; gap:40px 64px;
}
.site-footer .grid-4 > div{ display:flex; flex-direction:column; align-items:center; gap:12px }
.site-footer .partners{ display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:10px }
.site-footer .partners img{
  max-height:28px; width:auto; object-fit:contain; opacity:.95; transition:transform .2s ease, opacity .2s ease
}
.site-footer .partners img:hover{ transform:scale(1.05); opacity:1 }
@media (max-width:768px){
  .site-footer .partners{ flex-direction:row; justify-content:center; gap:24px }
  .site-footer .partners img{ max-height:20px }
}

/* ---------- Alerts */
.alert{
  border-radius:12px; padding:14px 18px; margin:20px auto; width:min(600px,90%);
  text-align:center; font-weight:500; box-shadow:0 6px 16px rgba(0,0,0,.05);
  animation:fadeIn .4s ease;
}
.alert.success{ background:#ecfdf5; color:#065f46; border:1px solid #a7f3d0 }
.alert.error{ background:#fef2f2; color:#991b1b; border:1px solid #fecaca }
@keyframes fadeIn{ from{opacity:0; transform:translateY(-6px)} to{opacity:1; transform:translateY(0)} }

/* ---------- Tables (admin) */
.table{ display:grid; gap:6px }
.table-row{
  display:grid; grid-template-columns:50px 1fr 1fr 1fr 90px 150px 2fr; gap:8px;
  background:#fff; padding:10px; border-radius:10px;
}
.table-row.head{ background:#f3f4f6; font-weight:600 }

/* ---------- Admin header */
.admin .login-wrapper{
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#0b1224,#1f2937)
}
.admin .card{ max-width:520px; width:92% }
.admin .admin-bar{ background:#0b1224; color:#fff; padding:10px 0; margin-bottom:18px }
.admin span{ color:#ffffff }

/* ---------- Stats strip (with counters) */
.stats{ padding:38px 0; background:transparent }
.stat-card{
  background:#fff; border-radius:var(--radius-lg); padding:22px 26px; box-shadow:var(--shadow); text-align:center;
  transition:transform .2s ease;
}
.stat-card:hover{ transform:translateY(-4px) }
.stat-number{
  font-size:clamp(34px,5.2vw,56px); line-height:1; font-weight:700; color:#b88f6a; letter-spacing:.5px; margin-bottom:8px;
}
.stat-label{ font-size:clamp(14px,2.4vw,18px); color:#111 }

/* ---------- About intro & team */
.about-intro{ padding:60px 0; background:transparent }
.about-intro .portrait{ border-radius:18px; box-shadow:var(--shadow) }
.about-intro h2{ color:var(--brand-2); margin:0 0 14px; font-size:clamp(1.4rem,2.4vw,2rem); line-height:1.25 }
.about-intro p{ color:#333; line-height:1.7; margin:0 0 14px }

@media (max-width:900px){
  .about-intro{ text-align:center }
  .about-intro .portrait{ max-width:520px; margin:0 auto 20px }
}

/* Side-by-side team (Photographer & Cleaning) */
.about-team{ text-align:center; padding:var(--section-y) 0 }
.about-team .grid-2{ align-items:start; gap:60px }
.about-team .team-card{
  background:#e2cdbc; border-radius:18px; box-shadow:var(--shadow);
  padding:20px; transition:transform .25s ease;
}
.about-team .team-card:hover{ transform:translateY(-6px) }
.about-team .team-photo{
  width:100%; aspect-ratio:4 / 3; object-fit:cover; border-radius:150px; margin-bottom:14px;
}
@media (max-width:900px){
  .about-team .grid-2{ grid-template-columns:1fr; gap:24px }
}

/* Standard team grid (if used elsewhere) */
.team{ padding:60px 0; background:transparent }
.team .subtitle{ color:var(--muted); margin:6px 0 24px }
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px }
@media (max-width:900px){ .team-grid{ grid-template-columns:1fr } }
.team-card{
  background:var(--surface); border:1px solid #eee; border-radius:18px; box-shadow:var(--shadow);
  padding:20px; transition:transform .25s ease; text-align:center;
}
.team-card:hover{ transform:translateY(-6px) }
.team-photo{ width:100%; aspect-ratio:4 / 3; object-fit:cover; border-radius:150px; margin-bottom:14px }
.team-card h3{ margin:6px 0; color:var(--brand-2); font-weight:600; font-size:1.05rem }
.team-role{
  display:inline-block; background:#f3f4f6; color:#111; border:1px solid #e5e7eb;
  padding:4px 10px; border-radius:999px; font-size:.85rem; margin-bottom:10px;
}
.team-bio{ color:#333; line-height:1.6; font-size:.95rem }

/* === À propos de Houyem — espacement + texte justifié === */
.about-houyem .grid-2 {
  align-items: center;   /* aligne verticalement l’image et le texte */
  gap: 80px;             /* espace horizontal entre la photo et le texte */
}

.about-houyem p {
  text-align: justify;        /* justifie le texte */
  text-justify: inter-word;   /* équilibre les espaces entre mots */
  line-height: 1.8;           /* lisibilité élégante */
  color: #222;                /* contraste doux */
  font-size: 1rem;
  margin-bottom: 1rem;
}


/* pour mobile : espace plus petit et texte toujours justifié */
@media (max-width: 900px) {
  .about-houyem .grid-2 {
    gap: 32px;
  }
  .about-houyem p {
    text-align: justify;
  }
}


/* ---------- Font Classes */
.font-orkney-light{ font-family:'Orkney',Poppins,sans-serif; font-weight:300; }
.font-orkney-normal{ font-family:'Orkney',Poppins,sans-serif; font-weight:400; }
.font-orkney-medium{ font-family:'Orkney',Poppins,sans-serif; font-weight:500; }
.font-orkney-bold{ font-family:'Orkney',Poppins,sans-serif; font-weight:700; }
.font-thinoo{ font-family:'Thinoo',Poppins,sans-serif; font-weight:400; }

/* ---------- Utilities */
.pop{ animation:pop .8s ease both }
@keyframes pop{ from{ transform:scale(.98); opacity:0 } to{ transform:scale(1); opacity:1 } }
.pulse{ animation:pulse 2.8s infinite }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(79,70,229,.5) } 70%{ box-shadow:0 0 0 18px rgba(79,70,229,0) } 100%{ box-shadow:0 0 0 0 rgba(79,70,229,0) } }
.shimmer{ position:relative; overflow:hidden }
.shimmer::after{
  content:""; position:absolute; inset:0; transform:translateX(-120%);
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.6),transparent);
  animation:shimmer 2.5s infinite;
}
@keyframes shimmer{ 100%{ transform:translateX(120%) } }

/* Scroll reveal */
.reveal{
  opacity:0; transform:translateY(16px);
  transition:opacity .55s ease, transform .55s ease;
  will-change:opacity, transform;
}
.reveal.in{ opacity:1; transform:none }
[data-reveal-from="left"]{ transform:translateX(-18px) }
[data-reveal-from="right"]{ transform:translateX(18px) }
[data-reveal-from="up"]{ transform:translateY(18px) }
[data-reveal-from="down"]{ transform:translateY(-18px) }
@media (prefers-reduced-motion:reduce){
  .reveal{ transition:none; opacity:1; transform:none }
}
/* === Contact preference — Elegant segmented control === */
.choice-group{
  display:inline-grid;
  grid-auto-flow:column;
  gap:0;                       /* seamless segments */
  border:1px solid rgba(17,17,17,.08);
  background:#fff;
  border-radius:14px;
  padding:6px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}

.choice-group legend{
  margin:0 0 10px 2px;
  font-weight:600;
  color:#1a1a1a;
  letter-spacing:.2px;
}

/* Visually hide radios, keep them accessible */
.choice-group input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:0; height:0;
}

/* Segments */
.choice-group .choice{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:150px;
  padding:12px 18px;
  border-radius:10px;               /* inner radius (outer is 14px wrapper) */
  color:#111;
  background:transparent;
  border:0;
  cursor:pointer;
  font-weight:500;
  user-select:none;
  transition:
    background .2s ease,
    transform .15s ease;
}

/* Divider effect between segments */
.choice-group .choice + .choice{
  position:relative;
}
.choice-group .choice + .choice::before{
  content:"";
  position:absolute;
  left:-6px; top:10%;
  width:1px; height:80%;
  background:linear-gradient(to bottom, transparent, rgba(0,0,0,.08), transparent);
}

/* Hover = gentle lift only */
.choice-group .choice:hover{
  transform:translateY(-2px);
}

/* Selected state */
.choice-group input[type="radio"]:checked + .choice{
  background:linear-gradient(180deg, #fff, #faf8f2);
  box-shadow:0 0 0 2px rgba(217,207,167,.75) inset, 0 8px 22px rgba(0,0,0,.06);
}

/* Keyboard focus ring on the chosen segment */
.choice-group input[type="radio"]:focus-visible + .choice{
  box-shadow:
    0 0 0 2px rgba(79,70,229,.25) inset,
    0 0 0 4px rgba(79,70,229,.15);
}

/* Optional tiny icon style (if you add icons inside the label) */
.choice-group .choice .icon{
  font-size:18px;
  opacity:.9;
}

/* Mobile: stack */
@media (max-width:480px){
  .choice-group{
    grid-auto-flow:row;
    padding:6px;
  }
  .choice-group .choice{
    width:100%;
  }
  .choice-group .choice + .choice::before{
    left:10%; top:-6px; width:80%; height:1px;
    background:linear-gradient(to right, transparent, rgba(0,0,0,.08), transparent);
  }
}
/* === Hover élégant pour les cartes (Page d'accueil) === */
.card, .value-card, .team-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform, box-shadow;
}

/* Animation de survol — effet luxueux */
.card:hover,
.value-card:hover,
.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Halo doré subtil au survol */
.card::after,
.value-card::after,
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(217, 207, 167, 0.0);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
}

.card:hover::after,
.value-card:hover::after,
.team-card:hover::after {
  border-color: rgba(217, 207, 167, 0.6); /* doré doux */
  box-shadow: 0 0 25px rgba(217, 207, 167, 0.3);
}

/* Optionnel : effet de flottement lent */
@keyframes float-card {
  0%, 100% { transform: translateY(-8px) scale(1.02); }
  50% { transform: translateY(-12px) scale(1.025); }
}

.card:hover,
.value-card:hover,
.team-card:hover {
  animation: float-card 2s ease-in-out infinite alternate;
}
/* === Apparition élégante & lente des images (zoom du centre) === */
img {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 2s ease-out, transform 2s ease-out;
  transition-delay: 0.6s; /* petit délai pour effet plus raffiné */
  will-change: opacity, transform;
}

/* Quand l’image devient visible */
img.visible {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s; /* instantané après déclenchement */
}

/* === About: Histoire de création (photo gauche, texte justifié) === */
.about-origin .grid-2{
  align-items: center;
  gap: 80px;              /* espacement demandé */
}

.about-origin .origin-photo{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 150px;
  box-shadow: var(--shadow);
}

.about-origin .origin-text p{
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  color: #222;
  margin: 0 0 1rem;
}

/* Responsive: on empile proprement */
@media (max-width: 900px){
  .about-origin .grid-2{
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-origin .origin-photo{
    max-width: 520px;
    margin: 0 auto;
  }
  .about-origin .origin-text{
    padding: 0 4px; /* un léger coussin latéral en mobile */
  }
}
/* === Lang toggle as flags =================================== */
.lang-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:32px;
  padding:0;
  border:1px solid rgba(255,255,255,.35);
  border-radius:10px;
  background:transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.site-header .nav .lang-toggle{ /* cohérent sur fond sombre du header */
  border-color: rgba(255,255,255,.35);
}
.lang-toggle:hover{
  transform:scale(1.06);
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  border-color: var(--brand);
}
.lang-toggle:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(217,207,167,.35);
}

/* Flags */
.flag{
  display:inline-block;
  width:32px;
  height:22px;
  border-radius:4px;
  box-shadow:0 0 4px rgba(0,0,0,.2);
  overflow:hidden;
}

/* France */
.flag-fr{
  background:
    linear-gradient(90deg,#0055A4 0 33.333%, #FFFFFF 33.333% 66.666%, #EF4135 66.666% 100%);
}

/* UK (Union Jack simplifié, lisible et élégant) */
.flag-uk{
  background:
    linear-gradient(90deg,#00247D 0 100%);
  position:relative;
}
.flag-uk::before,
.flag-uk::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(45deg, transparent 45%, #fff 45% 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, #fff 45% 55%, transparent 55%);
  mix-blend-mode:screen;
}
.flag-uk::after{
  background:
    linear-gradient(0deg, transparent 42%, #CF142B 42% 58%, transparent 58%),
    linear-gradient(90deg, transparent 42%, #CF142B 42% 58%, transparent 58%),
    linear-gradient(45deg, transparent 47%, #CF142B 47% 53%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, #CF142B 47% 53%, transparent 53%);
  opacity:.9;
}

/* Accessibilité: écran seulement */
.sr-only{
  position:absolute !important;
  width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Mobile: bouton plein largeur dans le panneau nav si besoin */
@media (max-width:900px){
  .nav .lang-toggle{
    width:100%;
    height:40px;
    border-radius:12px;
  }
}

/* === Centrer les titres sur mobile (about + origin) === */
@media (max-width: 900px) {
  .about-origin h2,
  .about-houyem h2 {
    text-align: center;
  }
}


/* === Prices page button color harmonized with "Meilleure vente" badge === */
.pricing .price-card.featured .btn {
  background: var(--brand);          /* même doré que la "meilleure vente" */
  color: var(--brand-2);             /* texte bleu nuit pour contraste élégant */
  border: 1px solid var(--brand);
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing .price-card.featured .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}


/* === Contact form card: effet sobre et luxueux === */
.contact-hero .card,
.form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 32px;
  transition: none !important; /* supprime tout effet de transition */
}

/* Supprime les effets au survol */
.contact-hero .card:hover,
.form-card:hover {
  transform: none !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}

/* Titre du formulaire raffiné */
.form-card h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--brand-2);
  margin-bottom: 1rem;
  text-align: center;
}

/* Champs du formulaire élégants */
.form input,
.form textarea {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(217,207,167,0.15);
  background: #fff;
}

/* Bouton du formulaire */
.form .btn {
  background: var(--brand);
  color: var(--brand-2);
  font-weight: 600;
  box-shadow: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.form .btn:hover {
  background: #e5dcb8;
  transform: translateY(-2px);
}
/* === Guillemets (inline) raffinés ======================================= */
.quote-mark{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  line-height: 1;
  /* doré en dégradé + léger relief */
  color: transparent;
  background: linear-gradient(180deg, #d9cfa7 0%, #84774a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.12));
  /* placement */
  vertical-align: -0.25rem;
  margin: 0 .25rem;
  display: inline-block;
  /* petite apparition douce */
  opacity: .0;
  transform: translateY(6px) scale(.96);
  animation: quoteFade .55s ease forwards .25s;
}

@keyframes quoteFade{
  to { opacity:1; transform: translateY(0) scale(1); }
}

/* Affiner l’ouverture (guillemet en début) : léger accroche à gauche */
.testimonial-content p:first-of-type .quote-mark{
  margin-left: -0.35rem;
}

/* Affiner la fermeture (guillemet en fin) : léger accroche à droite */
.testimonial-content p:last-of-type .quote-mark{
  margin-right: -0.35rem;
  vertical-align: -0.35rem; /* ferme un peu plus bas, effet “signature” */
}

/* === Gros guillemets décoratifs d’arrière-plan (plus luxueux) =========== */
.testimonial-content{
  position: relative;
  padding: 34px 0; /* un peu plus d’air */
}


/* Ouvrant géant en haut-gauche */
.testimonial-content::before{
  content: "“";
  font-size: clamp(62px, 10vw, 96px);
  top: -22px;
  left: -8px;
}

/* Fermant géant en bas-droite */
.testimonial-content::after{
  content: "”";
  font-size: clamp(62px, 10vw, 96px);
  bottom: -46px;
  right: 0;
}

/* Mobile : un cran plus petit et plus doux */
@media (max-width: 600px){
  .testimonial-content::before,
  .testimonial-content::after{
    opacity: .18;
    text-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
}
