
    /* Reset léger */
    :root{
      --bg:#fbfaf7;
      --accent:#1f2b6f;
      --accent-2:#f7b731;
      --card:#f3efe8;
      --muted:#6b6b6b;
      --glass: rgba(255,255,255,0.6);
      --radius:14px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
      background:var(--bg);
      color:#111;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.5;
    }




/* Header */
header{
  position:sticky;top:0;z-index:60;
  backdrop-filter: blur(6px);
  background:linear-gradient(180deg, rgba(10,10,35,0.85), rgba(10,10,35,0.75));
  color:#fff;
  box-shadow:0 6px 18px rgba(10,10,35,0.25);
}

.header-inner{
  max-width:1120px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:14px;
}

.brand{
  display:flex;gap:12px;align-items:center;text-decoration:none;color:inherit
}

.brand img{
  width:56px;height:56px;border-radius:10px;object-fit:cover;box-shadow:0 6px 18px rgba(0,0,0,0.2)
}

.brand h1{
  font-family:Playfair Display,serif;margin:0;font-size:20px;letter-spacing:0.4px
}

nav ul{
  display:flex;gap:14px;margin:0;padding:0;list-style:none
}

nav a{
  color:rgba(255,255,255,0.92);text-decoration:none;font-weight:600;padding:8px;border-radius:8px
}

nav a:hover{
  background:rgba(255,255,255,0.06)
}

/* ⭐⭐ RESPONSIVE FIX — JUSTE ÇA ⭐⭐ */
@media(max-width:768px){
  .header-inner{
    flex-direction:column;
    gap:14px;
    text-align:center;
  }

  nav ul{
    flex-direction:column;
  }
}




    /* Hero */
    .hero{max-width:1120px;margin:28px auto;padding:36px 18px;display:grid;grid-template-columns:1fr 420px;gap:28px;align-items:center}
    @media (max-width:880px){.hero{grid-template-columns:1fr}}
    .hero-card{background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(243,243,243,0.9));padding:28px;border-radius:18px;box-shadow:0 10px 30px rgba(18,18,18,0.06)}
    .kicker{display:inline-block;background:var(--accent);color:#fff;padding:6px 10px;border-radius:999px;font-size:13px;font-weight:700;margin-bottom:14px}
    .hero-card h2{margin:0 0 10px;font-size:28px;font-weight:700}
    .hero-card p{margin:0 0 18px;color:var(--muted)}
    .cta-row{display:flex;gap:12px}
    .btn{display:inline-flex;align-items:center;gap:10px;padding:12px 16px;border-radius:12px;text-decoration:none;font-weight:700}
    .btn-primary{background:var(--accent);color:#fff}
    .btn-ghost{background:transparent;border:2px solid var(--accent);color:var(--accent)}

    /* Small contact card */
    .contact-card{background:linear-gradient(180deg, rgba(255,255,255,0.84), rgba(250,250,250,0.9));padding:18px;border-radius:12px;border:1px solid rgba(16,16,64,0.04)}
    .contact-card h3{margin:0 0 6px;font-size:18px}
    .contact-card p{margin:0 0 12px;color:var(--muted);font-size:14px}
    .contact-card a{display:inline-block;margin-right:8px;color:var(--accent);text-decoration:none;font-weight:600}

    /* Services */
    .section{max-width:1120px;margin:28px auto;padding:0 18px}
    .services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    @media (max-width:980px){.services-grid{grid-template-columns:repeat(2,1fr)}}
    @media (max-width:600px){.services-grid{grid-template-columns:1fr}}

    .service{background:var(--card);padding:18px;border-radius:14px;box-shadow:0 8px 22px rgba(17,17,17,0.06);display:flex;gap:14px;align-items:flex-start}
    .service img{width:84px;height:84px;border-radius:12px;object-fit:cover;flex-shrink:0}
    .service h4{margin:0 0 6px;font-size:16px}
    .service p{margin:0;color:var(--muted);font-size:14px}

    .lien a{
    display: inline-block;
    margin: 15px;
    padding: 8px 16px;
    background-color: #050540;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: O.3s;
    }
    

    /* Testimonials */
    .testimonials{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:18px}
    @media (max-width:880px){.testimonials{grid-template-columns:1fr}}
    .testimonial{padding:18px;border-radius:12px;background:linear-gradient(180deg, #fff, #fbfbfb);box-shadow:0 8px 18px rgba(10,10,30,0.04)}
    .testimonial p{margin:0;color:var(--muted)}
    .testimonial .meta{margin-top:12px;font-weight:700}

    /* Contact Section */
    .contact-section{background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,250,0.95));padding:28px;border-radius:16px;box-shadow:0 10px 30px rgba(12,12,40,0.03);margin-top:24px}
    form{display:grid;grid-template-columns:1fr 1fr;gap:12px}
    @media (max-width:720px){form{grid-template-columns:1fr}}
    input,textarea,select{padding:12px;border-radius:10px;border:1px solid #e6e6e6;font-size:15px}
    textarea{grid-column:1 / -1;min-height:120px;resize:vertical}
    .form-cta{grid-column:1 / -1;display:flex;gap:12px;align-items:center}

    /* Footer */
    footer{margin-top:32px;padding:28px 18px;background:#0a0a23;color:#fff}
    .footer-inner{max-width:1120px;margin:0 auto;display:flex;flex-direction:row;justify-content:space-between;align-items:center;gap:12px}
    @media (max-width:720px){.footer-inner{flex-direction:column;align-items:flex-start}}
    .socials a{color:#fff;margin-right:12px;text-decoration:none;font-weight:600}

    /* Utilities */
    .max{max-width:1120px;margin:0 auto}
    .muted{color:var(--muted)}

.img-temoi{
  width: 100%;
  width: 100px;
  border-radius: 80%;
  object-fit: cover;
}
.img-temoi2{
  width: 50%;
  width: 90px;
  border-radius: 80%;
  object-fit: cover;
}



    /* Dignaosti */
    .dignosti
    {
      font-weight: bold;
      font-size: 24px;
      padding: 10px;
      margin: 10px;
     
    }
    .retur{
      background-color: rgb(110, 110, 98);
      color: #b6b6ec;
      font-weight: bold;
      font-size: 25px;
      border-radius: 5px;
      text-decoration: none;
    }