/*
  SELECT DRIVE — STYLE COMPLET
  Version avec Recherche personnalisée avant Concept.
  Palette bleu nuit, bleu clair et blanc.
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #07111f;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(7,17,31,.95) 0%, rgba(7,17,31,.78) 45%, rgba(7,17,31,.45) 100%),
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

/* NAVBAR */
.navbar {
  height: 90px;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7,17,31,.96);
  border-bottom: 1px solid rgba(61,190,255,.16);
}

.logo { display:flex; align-items:center; }
.logo img { height:62px; width:auto; object-fit:contain; }
.logo-text {
  font-size:28px;
  font-weight:900;
  letter-spacing:2px;
  color:#fff;
  text-transform:uppercase;
}
.logo-text span { color:#38c6ff; }

.nav-links {
  display:flex;
  gap:34px;
  list-style:none;
  align-items:center;
}

.nav-links a {
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:rgba(255,255,255,.75);
  transition:.3s;
}
.nav-links a:hover { color:#38c6ff; }

.nav-btn,
.nav-button {
  padding:12px 24px;
  border:1px solid #38c6ff;
  border-radius:40px;
  color:#38c6ff !important;
}
.nav-btn:hover,
.nav-button:hover {
  background:#38c6ff;
  color:#07111f !important;
}

/* HERO */
.hero-content {
  min-height:calc(100vh - 90px);
  padding:80px 8%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:820px;
}

.subtitle,
.section-label {
  color:#38c6ff;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.hero h1 {
  font-size:clamp(48px,7vw,86px);
  line-height:1;
  font-weight:900;
  margin-bottom:28px;
  text-transform:uppercase;
}

.hero-content p {
  max-width:660px;
  color:rgba(255,255,255,.78);
  font-size:20px;
  margin-bottom:38px;
}

.hero-buttons {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* BOUTONS */
.btn {
  display:inline-block;
  padding:16px 30px;
  border-radius:40px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:2px;
  font-weight:800;
  transition:.3s;
}
.btn-primary { background:#38c6ff; color:#07111f; }
.btn-primary:hover { background:#fff; transform:translateY(-3px); }
.btn-secondary { border:1px solid rgba(255,255,255,.35); color:#fff; }
.btn-secondary:hover { border-color:#38c6ff; color:#38c6ff; }

/* INTRO */
.intro,
.premium,
.brand-intro {
  padding:110px 8%;
  background:#151515;
}

.intro h2,
.premium h2,
.brand-intro h2 {
  font-size:clamp(38px,6vw,68px);
  line-height:1;
  max-width:950px;
  margin-bottom:28px;
  text-transform:uppercase;
}

.intro p,
.premium p,
.brand-text {
  max-width:850px;
  color:rgba(255,255,255,.75);
  font-size:20px;
}

/* AVANTAGES */
.advantages {
  background:#222;
  padding:90px 8%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
}

.advantages article {
  background:#171717;
  padding:42px;
  min-height:280px;
}
.advantages span { color:#38c6ff; font-weight:900; font-size:14px; }
.advantages h3 { font-size:28px; margin:22px 0 16px; text-transform:uppercase; }
.advantages p { color:rgba(255,255,255,.72); }

/* ECOLOGIE */

.eco{
    background:#0b1524;
    padding:120px 8%;
}

.eco-content{
    max-width:1200px;
    margin:auto;
}

.eco-text{
    max-width:850px;
    margin:30px 0 70px;
    color:rgba(255,255,255,.75);
    font-size:20px;
    line-height:1.8;
}

.eco-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.eco-card{
    background:#101c2d;
    border:1px solid rgba(56,198,255,.12);
    border-radius:22px;
    padding:40px;
    transition:.3s;
}

.eco-card:hover{
    transform:translateY(-8px);
    border-color:#38c6ff;
}

.eco-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#38c6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.eco-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
}

.eco-card p{
    color:rgba(255,255,255,.75);
}

@media(max-width:900px){

.eco-grid{
grid-template-columns:1fr;
}

}

/* SERVICES */
.services {
    background: #07111f;
    padding: 120px 8%;
    color: #ffffff;
}

.section-title {
  text-align:center;
  margin-bottom:95px;
}
.section-title p {
  color:#38c6ff;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:800;
  margin-bottom:12px;
}
.section-title h2 {
  font-size:clamp(34px,5vw,56px);
  line-height:1.1;
}

.service-grid {
  max-width:1250px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:110px 40px;
}

.service-card {
  position:relative;
  min-height:340px;
  padding:160px 40px 42px;
  background:#fff;
  color:#07111f;
  border-radius:24px;
  border:1px solid rgba(7,17,31,.08);
  text-align:center;
  box-shadow:0 24px 55px rgba(0,0,0,.25);
  transition:transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform:translateY(-10px);
  box-shadow:0 34px 70px rgba(0,0,0,.32);
}

.service-image {
  position:absolute;
  top:-78px;
  left:50%;
  width:200px;
  height:200px;
  transform:translateX(-50%);
  border:9px solid #fff;
  border-radius:50%;
  overflow:hidden;
  background:#e5e9ee;
  box-shadow:0 18px 38px rgba(0,0,0,.26);
}

.service-image img {
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.service-card h3 {
  font-size:32px;
  line-height:1.15;
  margin-bottom:16px;
  color:#07111f;
  font-weight:900;
}

.service-card p {
  max-width:470px;
  margin:0 auto;
  color:#5e6875;
  font-size:17px;
  line-height:1.7;
}
.service-card p + p { margin-top:12px; }

/* OFFRES */
.offers {
  background:#f5f6f8;
  color:#07111f;
  padding:100px 8%;
}
.offer-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.offer-card {
  background:#fff;
  border-radius:28px;
  padding:42px;
  position:relative;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  transition:.3s;
}
.offer-card:hover { transform:translateY(-8px); }
.offer-card h3 { font-size:30px; margin-bottom:10px; }
.price,
.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 30px;
  color: #07111f;
  line-height: 1;
}

.offer-price span {
  display: block;
  color: #38c6ff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.offer-price strong {
  display: block;
  color: inherit;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.offer-card-active .offer-price {
  color: #38c6ff;
}

.offer-card-active .offer-price span {
  color: #ffffff;
}

.offer-card-active .offer-price{
    color:#38c6ff;
}

.offer-card-active .offer-price span{
    color:#ffffff;
}
.offer-card ul { list-style:none; margin-bottom:34px; }
.offer-card li { margin-bottom:13px; color:#555; }
.offer-card li::before { content:"✓ "; color:#38c6ff; font-weight:900; }
.featured,
.offer-card-active {
  background:#07111f;
  color:#fff;
  transform:translateY(-15px);
}
.featured .price,
.offer-card-active .offer-price { color:#38c6ff; }
.featured li,
.offer-card-active li { color:rgba(255,255,255,.75); }
.badge,
.offer-badge {
  position:absolute;
  top:24px;
  right:24px;
  background:#38c6ff;
  color:#07111f;
  padding:8px 14px;
  border-radius:20px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

/* APPEL À L'ACTION / DEVIS */
.contact {
  background:#07111f;
  padding:120px 8% 150px;
}
.contact-container { max-width:1100px; margin:0 auto; }
.contact-header {
  max-width:820px;
  margin:0 auto;
  text-align:center;
}
.contact-header h2 {
  color:#fff;
  font-size:clamp(42px,5vw,68px);
  line-height:1.05;
  font-weight:900;
  margin-bottom:20px;
}
.contact-header p { color:rgba(255,255,255,.74); font-size:20px; }
.quote-action {
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:35px;
}
.quote-action .btn { padding:18px 34px; }

/* PAGES LÉGALES */
.legal {
  background:#07111f;
  padding:120px 8%;
  min-height:100vh;
}
.legal-container {
  max-width:1000px;
  margin:0 auto;
  background:#0b1728;
  border:1px solid rgba(56,198,255,.18);
  border-radius:28px;
  padding:50px;
}
.legal h1 {
  font-size:clamp(38px,5vw,60px);
  line-height:1.1;
  margin-bottom:30px;
  text-transform:uppercase;
}
.legal h2 { color:#38c6ff; font-size:24px; margin:38px 0 14px; }
.legal p,
.legal li { color:rgba(255,255,255,.75); font-size:17px; }
.legal ul { padding-left:22px; margin:14px 0; }
.legal strong { color:#fff; }

/* ==========================
   FOOTER
========================== */

footer{
    background:#04080f;
    border-top:1px solid rgba(56,198,255,.15);
    padding:40px 8%;
    color:rgba(255,255,255,.65);
    font-size:15px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-left{
    color:rgba(255,255,255,.65);
    line-height:1.8;
}

.footer-right{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.footer-right a{
    color:rgba(255,255,255,.65);
    transition:.3s;
}

.footer-right a:hover{
    color:#38c6ff;
}

/* Crédit Wap Provence */

.footer-credit{
    color:#38c6ff;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.footer-credit:hover{
    color:#ffffff;
    text-decoration:underline;
}

/* RESPONSIVE */
@media (max-width:900px) {
  .navbar { height:78px; padding:0 6%; }
  .nav-links { display:none; }
  .logo img { height:50px; }
  .logo-text { font-size:22px; }
  .hero-content { padding:60px 6%; }
  .hero h1 { font-size:46px; }
  .hero-content p { font-size:17px; }

  .advantages,
  .offer-grid { grid-template-columns:1fr; }

  .services { padding:95px 6%; }
  .section-title { margin-bottom:90px; }
  .service-grid { grid-template-columns:1fr; gap:100px; }
  .service-card { min-height:auto; padding:150px 28px 38px; }
  .service-image { top:-68px; width:175px; height:175px; }

  .featured,
  .offer-card-active { transform:none; }

  .contact { padding:85px 6% 110px; }
  .contact-header { text-align:left; }
  .quote-action { justify-content:flex-start; }
  .quote-action .btn { width:100%; text-align:center; }

  .legal { padding:80px 6%; }
  .legal-container { padding:30px; }

  .footer-container {
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:520px) {
  .hero h1 { font-size:38px; }
  .service-card { padding-top:125px; }
  .service-image {
    top:-55px;
    width:145px;
    height:145px;
    border-width:6px;
  }
  .service-card h3 { font-size:24px; }
  .service-card p { font-size:16px; }
  .legal-container { padding:24px; }
}

/* =========================================================
   PAGE PRESTATIONS ET TARIFS
   DESIGN SELECT DRIVE
========================================================= */

/* EN-TÊTE */

.prestations-header {
  background: #07111f;
  border-bottom: 1px solid rgba(56, 198, 255, 0.14);
}

.prestations-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 105px 8% 115px;
}

.prestations-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.prestations-hero > p:not(.section-label) {
  max-width: 760px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.8;
}

/* PAGE */

.prestations-page {
  background: #0b1524;
}

.tariff-container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

/* =========================================================
   CATÉGORIES DE VÉHICULES
========================================================= */

.vehicle-categories {
  padding: 100px 8%;
  background: #0b1524;
}

.tariff-heading {
  margin-bottom: 46px;
}

.tariff-heading h2 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  text-transform: uppercase;
}

.category-list {
  padding: 44px;
  background: #101c2d;
  border: 1px solid rgba(56, 198, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}

.category-item + .category-item {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.category-item h3 {
  margin-bottom: 10px;
  color: #38c6ff;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================================
   SECTIONS TARIFAIRES
========================================================= */

.tariff-section {
  padding: 90px 8%;
  background: #07111f;
}

.tariff-section-alt {
  background: #0b1524;
}

.tariff-title {
  padding: 30px 34px;
  background: #101c2d;
  border: 1px solid rgba(56, 198, 255, 0.18);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
}

.tariff-title h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-title p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.tariff-title p + p {
  margin-top: 8px;
}

/* =========================================================
   TABLEAUX
========================================================= */

.tariff-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid rgba(56, 198, 255, 0.18);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.tariff-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #07111f;
}

.tariff-table thead {
  background: #07111f;
  color: #ffffff;
}

.tariff-table th,
.tariff-table td {
  padding: 24px 22px;
  border-right: 1px solid #dce7ef;
  border-bottom: 1px solid #dce7ef;
  vertical-align: middle;
}

.tariff-table th:last-child,
.tariff-table td:last-child {
  border-right: none;
}

.tariff-table tbody tr:last-child th,
.tariff-table tbody tr:last-child td {
  border-bottom: none;
}

.tariff-table thead th {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tariff-table thead th:first-child {
  width: 38%;
  text-align: left;
}

.tariff-table thead th:not(:first-child) {
  width: 20.66%;
}

.tariff-table thead span {
  display: block;
  margin-top: 7px;
  color: #38c6ff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.tariff-table tbody {
  background: #ffffff;
}

.tariff-table tbody tr:nth-child(even) {
  background: #f4f8fb;
}

.tariff-table tbody tr:hover {
  background: #eef8fc;
}

.tariff-table tbody th {
  background: #101c2d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
}

.tariff-table tbody tr:nth-child(even) th {
  background: #13243a;
}

.tariff-table tbody td {
  color: #273345;
  font-size: 15px;
  line-height: 1.65;
}

.tariff-table ul {
  padding-left: 20px;
}

.tariff-table li + li {
  margin-top: 8px;
}

.tariff-table li::marker {
  color: #38c6ff;
}

.price-cell {
  color: #07111f !important;
  font-size: 20px !important;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.tariff-table small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
}

/* =========================================================
   TABLE OPTIONS
========================================================= */

.options-table thead th:first-child {
  width: 30%;
}

.options-table thead th:not(:first-child) {
  width: 23.33%;
}

.option-description {
  color: #334155 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.option-description p + p {
  margin-top: 8px;
}

.option-description strong {
  display: block;
  margin-top: 20px;
  color: #07111f;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

/* =========================================================
   BOUTONS ET NOTES
========================================================= */

.tariff-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.tariff-action .btn {
  min-width: 270px;
  text-align: center;
}

.tariff-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-style: italic;
}

/* =========================================================
   CTA FINAL
========================================================= */

.prestations-cta {
  padding: 110px 8%;
  background: #07111f;
}

.prestations-cta-content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.prestations-cta h2 {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  text-transform: uppercase;
}

.prestations-cta p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.8;
}

/* LIEN ACTIF */

.nav-links a[href="prestations.html"] {
  color: #38c6ff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .prestations-hero {
    padding: 80px 6% 90px;
  }

  .prestations-hero h1 {
    font-size: 48px;
  }

  .vehicle-categories,
  .tariff-section,
  .prestations-cta {
    padding-left: 6%;
    padding-right: 6%;
  }

  .category-list {
    padding: 30px;
  }

  .tariff-title {
    padding: 24px;
  }

  .tariff-table th,
  .tariff-table td {
    padding: 20px 18px;
  }

  .prestations-cta-content {
    text-align: left;
  }

  .prestations-cta p:not(.section-label) {
    margin-left: 0;
  }

  .prestations-cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .prestations-hero {
    padding-top: 65px;
  }

  .prestations-hero h1 {
    font-size: 38px;
  }

  .prestations-hero > p:not(.section-label) {
    font-size: 17px;
  }

  .vehicle-categories {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .tariff-heading h2 {
    font-size: 34px;
  }

  .category-list {
    padding: 24px;
    border-radius: 20px;
  }

  .category-item h3 {
    font-size: 19px;
  }

  .category-item p {
    font-size: 15px;
  }

  .tariff-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .tariff-title {
    padding: 20px;
    border-radius: 18px 18px 0 0;
  }

  .tariff-title h2 {
    font-size: 26px;
  }

  .tariff-title p {
    font-size: 14px;
  }

  .tariff-table-wrapper {
    border-radius: 0 0 18px 18px;
  }

  .tariff-action {
    justify-content: stretch;
  }

  .tariff-action .btn {
    width: 100%;
    min-width: 0;
  }

  .prestations-cta {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .prestations-cta h2 {
    font-size: 36px;
  }
}

/* ==========================================
   RECHERCHE PERSONNALISÉE
   Placée entre le Hero et le Concept
========================================== */

.custom-search {
  position:relative;
  overflow:hidden;
  background:#07111f;
  padding:120px 8%;
}

.custom-search::before {
  content:"";
  position:absolute;
  top:-220px;
  right:-180px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:rgba(56,198,255,.08);
  filter:blur(8px);
  pointer-events:none;
}

.custom-search-container {
  position:relative;
  z-index:1;
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,560px);
  align-items:center;
  gap:80px;
}

.custom-search-image {
  position:relative;
  min-height:620px;
  overflow:hidden;
  border-radius:26px;
  box-shadow:0 30px 75px rgba(0,0,0,.38);
}

.custom-search-image::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(7,17,31,.04) 0%,
    rgba(7,17,31,.14) 55%,
    rgba(7,17,31,.48) 100%
  );
  pointer-events:none;
}

.custom-search-image img {
  width:100%;
  height:620px;
  display:block;
  object-fit:cover;
  transition:transform .6s ease;
}

.custom-search-image:hover img {
  transform:scale(1.04);
}

.custom-search-content {
  max-width:620px;
}

.custom-search-content .section-label {
  margin-bottom:18px;
}

.custom-search-content h2 {
  max-width:620px;
  margin-bottom:30px;
  color:#ffffff;
  font-size:clamp(38px,4.5vw,62px);
  font-weight:900;
  line-height:1;
  letter-spacing:-.025em;
  text-transform:uppercase;
}

.custom-search-content p {
  max-width:600px;
  margin-bottom:18px;
  color:rgba(255,255,255,.76);
  font-size:17px;
  line-height:1.8;
}

.custom-search-highlight {
  margin-top:28px;
  margin-bottom:36px !important;
  color:#38c6ff !important;
  font-size:20px !important;
  font-weight:800;
  line-height:1.55 !important;
}

.custom-search .btn {
  min-width:330px;
  text-align:center;
}

/* ==========================================
   PETITES AMÉLIORATIONS GLOBALES
========================================== */

.service-card,
.offer-card,
.eco-card,
.legal-container {
  will-change:transform;
}

.service-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:24px;
  color:#1a8fc0;
  font-size:12px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:color .3s ease, transform .3s ease;
}

.service-link::after {
  content:"+";
  font-size:20px;
  line-height:1;
}

.service-link:hover {
  color:#07111f;
  transform:translateY(-2px);
}

/* ==========================================
   RESPONSIVE RECHERCHE PERSONNALISÉE
========================================== */

@media (max-width:1000px) {
  .custom-search {
    padding:95px 6%;
  }

  .custom-search-container {
    grid-template-columns:1fr;
    gap:55px;
  }

  .custom-search-image {
    min-height:440px;
  }

  .custom-search-image img {
    height:440px;
  }

  .custom-search-content {
    max-width:800px;
  }

  .custom-search-content h2 {
    max-width:760px;
    font-size:clamp(38px,7vw,56px);
  }
}

@media (max-width:700px) {
  .custom-search {
    padding:80px 6%;
  }

  .custom-search-container {
    gap:38px;
  }

  .custom-search-image {
    min-height:300px;
    border-radius:20px;
  }

  .custom-search-image img {
    height:300px;
  }

  .custom-search-content h2 {
    font-size:36px;
    line-height:1.03;
  }

  .custom-search-content p {
    font-size:16px;
  }

  .custom-search-highlight {
    font-size:18px !important;
  }

  .custom-search .btn {
    width:100%;
    min-width:0;
  }
}