/* ===============================
   SERVICES 
   =============================== */

.services-premium-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef4fb 100%);
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-premium-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid #dce8f5;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(1, 73, 142, 0.08);
  text-decoration: none;
  transition: 0.32s ease;
  overflow: hidden;
}

.service-premium-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(1, 73, 142, 0.05);
}

.service-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(1, 73, 142, 0.14);
  border-color: rgba(198, 124, 88, 0.35);
}

.service-premium-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(1,73,142,0.10), rgba(198,124,88,0.18));
  font-size: 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-premium-card h3 {
  font-size: 30px;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-premium-card p {
  color: #667085;
  line-height: 1.85;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.service-premium-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: 0.25s ease;
}

.service-premium-card:hover .service-premium-link {
  color: var(--accent);
}

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

@media (max-width: 768px) {
  .services-premium-section {
    padding: 72px 0;
  }

  .service-premium-card {
    padding: 24px;
    border-radius: 22px;
  }

  .service-premium-card h3 {
    font-size: 24px;
  }

  .service-premium-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 26px;
  }
}

/* ===============================
   IMAGE RÉELLE - DESCRIPTION
   =============================== */

.service-real-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 18px 40px rgba(1, 73, 142, 0.10);
}

/* ===============================
   BLOC ESTIMATION CONSTRUCTION
   =============================== */

.service-estimate-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dce8f5;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(1, 73, 142, 0.08);
  overflow: hidden;
}

.service-estimate-image-wrap {
  height: 100%;
}

.service-estimate-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.service-estimate-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-estimate-tag {
  align-self: flex-start;
  margin-bottom: 14px;
}

.service-estimate-content h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.service-estimate-content p {
  color: #667085;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-estimate-points {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.estimate-point {
  background: rgba(1, 73, 142, 0.06);
  border: 1px solid rgba(1, 73, 142, 0.10);
  color: var(--primary);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.service-estimate-btn {
  align-self: flex-start;
  padding: 15px 24px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-estimate-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-real-image {
    min-height: 260px;
  }

  .service-estimate-card {
    padding: 24px;
    border-radius: 22px;
  }

  .service-estimate-image {
    min-height: 240px;
  }

  .service-estimate-btn {
    width: 100%;
    text-align: center;
  }
}
/* ===============================
   BESOIN GRID - PATRIMOINE
   =============================== */

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.need-card {
  min-height: 120px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dce8f5;
  box-shadow: 0 16px 32px rgba(1, 73, 142, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  padding: 18px;
}

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

@media (max-width: 640px) {
  .need-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   SPLIT SECTION PROPRE
   =============================== */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-media {
  height: 100%;
}

/* Image bien propre */
.service-real-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 18px 40px rgba(1, 73, 142, 0.10);
}

/* Responsive */
@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .service-real-image {
    min-height: 260px;
  }
}

/* ===============================
   INSPIRATION VISUELLE
   =============================== */

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.inspiration-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.inspiration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.inspiration-card:hover img {
  transform: scale(1.08);
}

.inspiration-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}

.inspiration-overlay h3 {
  margin: 0;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .inspiration-card {
    height: 220px;
  }
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse .split-text {
  direction: ltr;
}

.service-real-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 18px 40px rgba(1, 73, 142, 0.10);
}