:root {
  --bethel-green: #003327;
  --bethel-green-dark: #02241d;
  --bethel-gold: #d4af37;
  --bethel-gold-dark: #b89222;
  --bethel-white: #ffffff;
  --bethel-text: #1f1f1f;
  --bethel-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--bethel-text);
  margin: 0;
  padding: 0;
}

.top-bar {
  background-color: var(--bethel-gold);
  color: var(--bethel-white);
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}

.top-bar .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-bar .contact-info a {
  color: var(--bethel-white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-bar .contact-info a i { color: var(--bethel-white); }

.main-header {
  background-color: var(--bethel-green) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.bethel-navbar {
  background-color: transparent !important;
  padding: 10px 0;
}

.navbar-brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.35rem 0.55rem;
  margin-left: auto;
}

.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { filter: brightness(0) invert(1); }

.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle {
  color: var(--bethel-white) !important;
  font-weight: 600;
  font-size: 15px;
  margin-left: 14px;
  transition: 0.3s;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-toggle:hover,
.navbar-nav .dropdown-toggle:focus {
  color: var(--bethel-gold) !important;
}

.dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: var(--bethel-shadow);
  padding: 10px 0;
}

.dropdown-item {
  font-weight: 500;
  padding: 10px 18px;
}

.dropdown-item:hover {
  background-color: rgba(0, 51, 39, 0.06);
  color: var(--bethel-green);
}

.btn-bethel-primary {
  display: inline-block;
  background-color: var(--bethel-gold);
  color: var(--bethel-green);
  border: none;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
  margin: 6px;
}

.btn-bethel-primary:hover {
  background-color: var(--bethel-gold-dark);
  color: var(--bethel-white);
}

.btn-bethel-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--bethel-white);
  border: 2px solid var(--bethel-white);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
  margin: 6px;
}

.btn-bethel-outline:hover {
  background-color: var(--bethel-white);
  color: var(--bethel-green);
}

/* =========================
   HERO SLIDER AMÉLIORÉ
========================= */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 92vh;
  min-height: 620px;
}

.hero-slider .carousel-item {
  position: relative;
}

/* image normale */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bethelZoom 7s ease-in-out infinite alternate;
}

/* overlay léger, pas vert */
.slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

/* contenu centré */
.custom-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: auto;
  width: min(920px, 100%);
  text-align: center;
  z-index: 2;
  padding: 0 15px;
}

.hero-subtitle {
  display: inline-block;
  color: var(--bethel-gold);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
}

.custom-caption h1 {
  color: #ffffff;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}

.custom-caption p {
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* boutons améliorés */
.btn-bethel-primary,
.btn-bethel-outline {
  min-width: 190px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.btn-bethel-primary:hover,
.btn-bethel-outline:hover {
  transform: translateY(-2px);
}

/* flèches */
.custom-control {
  width: 7%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-size: 45% 45%;
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

/* indicateurs */
.carousel-indicators {
  bottom: 28px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: 0;
  margin: 0 6px !important;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--bethel-gold);
  transform: scale(1.15);
}

/* animations texte */
.animate-up {
  opacity: 0;
  transform: translateY(35px);
}

.carousel-item.active .animate-up {
  animation: bethelFadeUp 0.9s ease forwards;
}

.carousel-item.active .delay-1 {
  animation-delay: 0.2s;
}

.carousel-item.active .delay-2 {
  animation-delay: 0.45s;
}

.carousel-item.active .delay-3 {
  animation-delay: 0.7s;
}

@keyframes bethelFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* zoom léger sur l’image */
@keyframes bethelZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* responsive tablette */
@media (max-width: 991.98px) {
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: 82vh;
    min-height: 540px;
  }

  .custom-caption h1 {
    font-size: 40px;
  }

  .custom-caption p {
    font-size: 16px;
  }

  .custom-control {
    width: 10%;
  }
}

/* responsive mobile */
@media (max-width: 575.98px) {
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    height: 78vh;
    min-height: 500px;
  }

  .custom-caption {
    width: 100%;
    padding: 0 18px;
  }

  .hero-subtitle {
    font-size: 12px;
    padding: 7px 12px;
  }

  .custom-caption h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .custom-caption p {
    font-size: 15px;
    line-height: 1.6;
  }

  .btn-bethel-primary,
  .btn-bethel-outline {
    width: 100%;
    max-width: 280px;
  }

  .custom-control {
    width: 14%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.hero-subtitle {
  color: var(--bethel-gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  font-size: 15px;
}

.custom-caption h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--bethel-white);
}

.custom-caption p {
  font-size: 18px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.95);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.carousel-indicators { bottom: 26px; }

.carousel-indicators button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.carousel-indicators .active { background-color: var(--bethel-gold); }


.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.carousel-item.active .animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: bethelFadeUp 0.9s ease forwards;
}



.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

@media (max-width: 991.98px) {
  .navbar-brand img { height: 58px; }

  .navbar-collapse {
    width: 100%;
    margin-top: 12px;
    background-color: var(--bethel-green-dark);
    border-radius: 14px;
    padding: 14px 16px;
  }

  .navbar-nav { align-items: flex-start !important; }

  .navbar-nav .nav-link,
  .navbar-nav .dropdown-toggle {
    margin-left: 0;
    padding: 10px 0;
    width: 100%;
  }

  .dropdown-menu {
    width: 100%;
    margin-top: 6px;
  }

  .hero-slider .carousel-item {
    height: 80vh;
    min-height: 540px;
  }

  .custom-caption h1 { font-size: 38px; }
  .custom-caption p { font-size: 16px; }
}

@media (max-width: 575.98px) {
  .top-bar .contact-info { gap: 14px; }
  .hero-slider .carousel-item { height: 76vh; min-height: 500px; }
  .custom-caption h1 { font-size: 30px; }
  .custom-caption p { font-size: 15px; }

  .btn-bethel-primary,
  .btn-bethel-outline {
    width: 100%;
    max-width: 280px;
  }
}

.services-section {
  padding: 90px 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--bethel-gold);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title h2 {
  color: var(--bethel-green);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-title p {
  max-width: 720px;
  margin: 0 auto;
  color: #666;
  line-height: 1.8;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.featured-service {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.service-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.12);
  color: var(--bethel-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--bethel-green);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  color: #5f6672;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bethel-gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.service-link:hover {
  color: var(--bethel-green);
}

@media (max-width: 991.98px) {
  .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .services-section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 24px 20px;
  }
}

/* =========================
   OFFRES PREMIUM
========================= */




/* =========================
   OFFRES PREMIUM AMÉLIORÉES
========================= */
.offers-section {
  padding: 90px 0;
  background: #ffffff;
}

.offer-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.featured-offer {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* image */
.offer-image {
  position: relative;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.1);
}

/* overlay */
.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 51, 39, 0.72),
    rgba(0, 51, 39, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.offer-card:hover .offer-overlay {
  opacity: 1;
  visibility: visible;
}

.offer-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--bethel-green);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  transform: translateY(16px);
}

.offer-card:hover .offer-overlay-btn {
  transform: translateY(0);
}

.offer-overlay-btn:hover {
  background: var(--bethel-gold);
  color: #ffffff;
}

/* badge */
.offer-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(212, 175, 55, 0.96);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* contenu */
.offer-content {
  padding: 24px;
}

.offer-content h3 {
  color: var(--bethel-green);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.offer-location {
  color: #777;
  font-size: 15px;
  margin-bottom: 12px;
}

.offer-location i {
  color: var(--bethel-gold);
  margin-right: 6px;
}

.offer-description {
  color: #5f6672;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* bas de carte */
.offer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 18px;
}

.offer-price {
  color: var(--bethel-gold-dark);
  font-size: 22px;
  font-weight: 800;
}

/* bouton bas */
.btn-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #003327, #02241d);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 51, 39, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-offer:hover {
  background: linear-gradient(135deg, #d4af37, #b89222);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

.btn-offer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-offer:hover::after {
  left: 125%;
}

.offers-action {
  margin-top: 40px;
}

/* responsive */
@media (max-width: 991.98px) {
  .offers-section {
    padding: 75px 0;
  }
}

@media (max-width: 575.98px) {
  .offers-section {
    padding: 65px 0;
  }

  .offer-image img {
    height: 240px;
  }

  .offer-content {
    padding: 20px;
  }

  .offer-content h3 {
    font-size: 22px;
  }

  .offer-price {
    font-size: 20px;
  }
}

/* =========================
   NOS CONSTRUCTIONS PREMIUM
========================= */
.projects-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.featured-project {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.project-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 51, 39, 0.88),
    rgba(0, 51, 39, 0.18)
  );
  display: flex;
  align-items: end;
  padding: 28px;
}

.project-info {
  width: 100%;
}

.project-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.95);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.project-info h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.project-info p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
  font-size: 15px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bethel-gold);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.project-link:hover {
  color: #ffffff;
  gap: 12px;
}

.projects-action {
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .projects-section {
    padding: 75px 0;
  }

  .project-card,
  .project-card img {
    min-height: 380px;
    height: 380px;
  }

  .project-info h3 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .projects-section {
    padding: 65px 0;
  }

  .project-card,
  .project-card img {
    min-height: 340px;
    height: 340px;
  }

  .project-overlay {
    padding: 22px;
  }

  .project-info h3 {
    font-size: 22px;
  }
}


/* =========================
   CTA PREMIUM ANIMÉ
========================= */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #003327, #02241d);
}

.cta-box {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 35px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  animation: ctaFadeUp 1s ease both;
}

.cta-subtitle {
  display: inline-block;
  color: var(--bethel-gold);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  animation: ctaGlow 2.2s ease-in-out infinite;
}

.cta-box h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-box h2 span {
  color: var(--bethel-gold);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 210px;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #d4af37, #b89222);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
}

.btn-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(212, 175, 55, 0.38);
}

.btn-cta-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-cta-outline:hover {
  transform: translateY(-3px) scale(1.02);
  background: #ffffff;
  color: var(--bethel-green);
}

/* reflets animés sur boutons */
.btn-cta-primary::after,
.btn-cta-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-24deg);
  transition: 0.6s;
}

.btn-cta-primary:hover::after,
.btn-cta-outline:hover::after {
  left: 130%;
}

/* formes décoratives */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.18;
  z-index: 1;
}

.cta-shape-1 {
  width: 240px;
  height: 240px;
  background: var(--bethel-gold);
  top: -60px;
  left: -60px;
  animation: floatShape 7s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  bottom: -110px;
  right: -80px;
  animation: floatShape 9s ease-in-out infinite reverse;
}

/* animations */
@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaGlow {
  0%, 100% {
    text-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  50% {
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.28);
  }
}

@keyframes floatShape {
  0% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(18px) translateX(10px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

@media (max-width: 991.98px) {
  .cta-section {
    padding: 85px 0;
  }

  .cta-box {
    padding: 50px 28px;
  }

  .cta-box h2 {
    font-size: 38px;
  }
}

@media (max-width: 575.98px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-box {
    padding: 42px 20px;
    border-radius: 22px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .btn-cta-primary,
  .btn-cta-outline {
    width: 100%;
    max-width: 290px;
  }
}


/* =========================
   TÉMOIGNAGES PREMIUM
========================= */
.testimonials-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: testimonialFadeUp 0.9s ease both;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bethel-gold), var(--bethel-green));
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.featured-testimonial {
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%);
}

.testimonial-stars {
  color: var(--bethel-gold);
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  color: #535c68;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: -6px;
  font-size: 52px;
  color: rgba(212, 175, 55, 0.15);
  font-weight: 800;
  line-height: 1;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bethel-gold), var(--bethel-gold-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.24);
}

.testimonial-client h4 {
  color: var(--bethel-green);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
}

.testimonial-client span {
  color: #7a7f88;
  font-size: 14px;
}

/* animation */
@keyframes testimonialFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* décalage subtil entre cartes */
.testimonials-section .col-lg-4:nth-child(1) .testimonial-card {
  animation-delay: 0.1s;
}

.testimonials-section .col-lg-4:nth-child(2) .testimonial-card {
  animation-delay: 0.25s;
}

.testimonials-section .col-lg-4:nth-child(3) .testimonial-card {
  animation-delay: 0.4s;
}

@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 80px 0;
  }
}

@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 68px 0;
  }

  .testimonial-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

/* =========================
   FOOTER PREMIUM BETHEL
========================= */
.main-footer {
  background: linear-gradient(135deg, #003327, #02241d);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 25px;
  position: relative;
}

.footer-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-text {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

/* liens */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--bethel-gold);
  padding-left: 6px;
}

/* contact */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--bethel-gold);
}

/* réseaux sociaux */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--bethel-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

/* bas footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding-top: 18px;
  text-align: center;
  font-size: 14px;
}


/* =========================
   PAGE CONTACT PREMIUM
========================= */
.contact-hero {
  position: relative;
  padding: 120px 0;
  background: url('../img/contact-hero.jfif') center/cover no-repeat;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 51, 39, 0.82), rgba(0, 51, 39, 0.58));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 850px;
  margin: 0 auto;
  animation: contactHeroFade 1s ease both;
}

.contact-hero-subtitle {
  display: inline-block;
  color: var(--bethel-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.contact-hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.contact-info-section {
  padding: 90px 0 30px;
  background: #ffffff;
}

.premium-contact-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border: 1px solid rgba(0, 0, 0, 0.04);
  animation: contactCardFade 0.8s ease both;
}

.premium-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}

.featured-contact-card {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%);
}

.contact-card-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--bethel-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: 0.3s;
}

.premium-contact-card:hover .contact-card-icon {
  background: var(--bethel-green);
  color: #ffffff;
}

.premium-contact-card h3 {
  color: var(--bethel-green);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.premium-contact-card p {
  color: #5f6672;
  line-height: 1.8;
  margin-bottom: 16px;
}

.premium-contact-card a {
  color: var(--bethel-gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-main-section {
  padding: 40px 0 90px;
  background: #f8f9fa;
}

.contact-form-box,
.contact-side-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 30px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form .form-control {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid #dee2e6;
  box-shadow: none;
  padding: 14px 16px;
}

.contact-form textarea.form-control {
  min-height: 160px;
  resize: none;
}

.contact-form .form-control:focus {
  border-color: var(--bethel-gold);
  box-shadow: 0 0 0 0.15rem rgba(212, 175, 55, 0.16);
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #003327, #02241d);
  color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  transition: 0.35s;
  box-shadow: 0 10px 24px rgba(0, 51, 39, 0.24);
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d4af37, #b89222);
  color: #ffffff;
}

.contact-side-box h3 {
  color: var(--bethel-green);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-side-box > p {
  color: #5f6672;
  line-height: 1.8;
  margin-bottom: 26px;
}

.contact-side-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-side-item i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--bethel-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-side-item h4 {
  color: var(--bethel-green);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-side-item p,
.contact-side-item a {
  color: #6b7280;
  text-decoration: none;
  margin: 0;
}

.btn-whatsapp-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  transition: 0.35s;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp-contact:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.map-section {
  padding: 0 0 90px;
  background: #f8f9fa;
}

.map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

@keyframes contactHeroFade {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactCardFade {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-section .col-lg-4:nth-child(1) .premium-contact-card {
  animation-delay: 0.1s;
}

.contact-info-section .col-lg-4:nth-child(2) .premium-contact-card {
  animation-delay: 0.25s;
}

.contact-info-section .col-lg-4:nth-child(3) .premium-contact-card {
  animation-delay: 0.4s;
}

@media (max-width: 991.98px) {
  .contact-hero {
    padding: 95px 0;
  }

  .contact-hero-content h1 {
    font-size: 40px;
  }

  .contact-info-section {
    padding: 75px 0 20px;
  }

  .contact-main-section {
    padding: 30px 0 75px;
  }

  .map-section {
    padding: 0 0 75px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero {
    padding: 80px 0;
  }

  .contact-hero-content h1 {
    font-size: 30px;
  }

  .contact-hero-content p {
    font-size: 15px;
  }

  .premium-contact-card,
  .contact-form-box,
  .contact-side-box {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .contact-side-box h3 {
    font-size: 24px;
  }

  .map-box iframe {
    height: 320px;
  }
}

/* HERO */
.about-hero {
  position: relative;
  padding: 140px 0;
  background: url('../img/about-hero.jpg') center/cover no-repeat;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,51,39,0.85), rgba(0,51,39,0.65));
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: white;
  animation: fadeUp 1s ease;
}

.about-hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* IMAGE */
.about-img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* VALUES */
.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}



.value-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 22px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.value-card i {
  font-size: 42px;
  color: var(--bethel-gold);
  margin-bottom: 15px;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, #003327, #02241d);
  color: white;
}

.value-card:hover i {
  color: var(--bethel-gold);
}

/* STATS */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #003327, #02241d);
  color: white;
}

.stat-box {
  padding: 25px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--bethel-gold);
  margin-bottom: 8px;
}

.stat-box p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-content p {
  line-height: 1.9;
  color: #555;
}

.why-section {
  padding: 95px 0;
  background: #ffffff;
}

.why-image-box {
  position: relative;
}

.why-main-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.why-floating-card {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.96);
  padding: 20px 22px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  max-width: 280px;
}

.why-floating-card h4 {
  margin: 0 0 6px;
  color: var(--bethel-green);
  font-size: 20px;
  font-weight: 800;
}

.why-floating-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.why-content {
  text-align: left;
}

.why-content h2 {
  color: var(--bethel-green);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.why-intro {
  color: #5f6672;
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 620px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.why-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8f9fa;
  padding: 18px 16px;
  border-radius: 18px;
  transition: 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  background: #fcfbf7;
}

.why-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--bethel-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-box h4 {
  color: var(--bethel-green);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
}

.why-box p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  font-size: 14.5px;
}

@media (max-width: 991.98px) {
  .why-section {
    padding: 75px 0;
  }

  .why-main-image {
    height: 460px;
  }

  .why-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .why-section {
    padding: 65px 0;
  }

  .why-main-image {
    height: 360px;
  }

  .why-floating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .why-content h2 {
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-section .subtitle {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bethel-gold);
  margin-bottom: 12px;
  position: relative;
  padding-left: 50px;
}


.why-section .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bethel-gold);
  margin-bottom: 16px;
}

.why-section .subtitle::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--bethel-gold);
}

.why-content h2 {
  margin-top: 5px;
}


/* =========================
   ANIMATION AU SCROLL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* variantes optionnelles */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


/* =========================
   PAGE SERVICES PREMIUM
========================= */
.services-hero {
  position: relative;
  padding: 130px 0;
  background: url('../img/services-hero.jfif') center/cover no-repeat;
  overflow: hidden;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 51, 39, 0.84), rgba(0, 51, 39, 0.62));
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 850px;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.services-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.services-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.services-intro-section {
  padding: 90px 0 20px;
  background: #ffffff;
}

.services-detail-section {
  padding: 20px 0 90px;
  background: #ffffff;
}

.service-detail-block {
  margin-bottom: 80px;
}

.service-detail-block:last-child {
  margin-bottom: 0;
}

.service-detail-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-content {
  text-align: left;
}

.service-mini-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #003327, #02241d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 51, 39, 0.25);
  transition: 0.4s;
}

/* effet lumière */
.service-mini-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.service-mini-icon:hover::after {
  left: 120%;
}

/* hover */
.service-detail-block:hover .service-mini-icon {
  background: linear-gradient(135deg, #d4af37, #b89222);
  transform: translateY(-5px);
}

.service-label {
  display: inline-block;
  color: var(--bethel-gold);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-detail-content h2 {
  color: var(--bethel-green);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: #5f6672;
  line-height: 1.9;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.service-list li {
  color: #4f5661;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li i {
  color: var(--bethel-gold);
  font-size: 16px;
}

.process-section {
  padding: 95px 0;
  background: #f8f9fa;
}

.process-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.process-number {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bethel-gold), var(--bethel-gold-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  font-weight: 800;
}

.process-card h3 {
  color: var(--bethel-green);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-card p {
  color: #66707c;
  line-height: 1.8;
  margin: 0;
}

.services-cta-section {
  padding: 95px 0;
  background: linear-gradient(135deg, #003327, #02241d);
}

.services-cta-box {
  text-align: center;
  padding: 58px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.services-cta-box h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-cta-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 28px;
}

.services-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .services-hero {
    padding: 100px 0;
  }

  .services-hero-content h1 {
    font-size: 40px;
  }

  .services-intro-section {
    padding: 75px 0 15px;
  }

  .services-detail-section {
    padding: 15px 0 75px;
  }

  .service-detail-block {
    margin-bottom: 60px;
  }

  .service-detail-image img {
    height: 360px;
  }

  .service-detail-content h2 {
    font-size: 32px;
  }

  .process-section,
  .services-cta-section {
    padding: 75px 0;
  }

  .services-cta-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 575.98px) {
  .services-hero {
    padding: 80px 0;
  }

  .services-hero-content h1 {
    font-size: 30px;
  }

  .services-hero-content p {
    font-size: 15px;
  }

  .service-detail-image img {
    height: 280px;
    border-radius: 18px;
  }

  .service-detail-content h2 {
    font-size: 28px;
  }

  .process-card,
  .services-cta-box {
    border-radius: 20px;
  }

  .services-cta-box {
    padding: 42px 20px;
  }

  .services-cta-box h2 {
    font-size: 28px;
  }

  .services-cta-box p {
    font-size: 15px;
  }
}


/* =========================
   PAGE TERRAINS PREMIUM
========================= */
.terrains-hero {
  position: relative;
  padding: 130px 0;
  background: url('../img/terrains-hero.jpeg') center/cover no-repeat;
  overflow: hidden;
}

.terrains-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 51, 39, 0.84), rgba(0, 51, 39, 0.62));
}

.terrains-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.terrains-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.terrains-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.terrains-intro-section {
  padding: 90px 0 20px;
  background: #ffffff;
}

.terrain-filter-section {
  padding: 0 0 40px;
  background: #ffffff;
}

.terrain-filter-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.terrain-filter-btn {
  border: none;
  background: #f1f3f5;
  color: var(--bethel-green);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s;
}

.terrain-filter-btn:hover,
.terrain-filter-btn.active {
  background: linear-gradient(135deg, #003327, #02241d);
  color: #ffffff;
}

.terrain-list-section {
  padding: 10px 0 95px;
  background: #ffffff;
}

.terrain-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.terrain-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.featured-terrain {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.terrain-image {
  position: relative;
  overflow: hidden;
}

.terrain-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.terrain-card:hover .terrain-image img {
  transform: scale(1.1);
}

.terrain-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(212, 175, 55, 0.96);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.terrain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 51, 39, 0.72),
    rgba(0, 51, 39, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.terrain-card:hover .terrain-overlay {
  opacity: 1;
  visibility: visible;
}

.terrain-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--bethel-green);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  transform: translateY(16px);
}

.terrain-card:hover .terrain-overlay-btn {
  transform: translateY(0);
}

.terrain-overlay-btn:hover {
  background: var(--bethel-gold);
  color: #ffffff;
}

.terrain-content {
  padding: 24px;
}

.terrain-content h3 {
  color: var(--bethel-green);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.terrain-location {
  color: #777;
  font-size: 15px;
  margin-bottom: 12px;
}

.terrain-location i {
  color: var(--bethel-gold);
  margin-right: 6px;
}

.terrain-description {
  color: #5f6672;
  line-height: 1.8;
  margin-bottom: 18px;
}

.terrain-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  margin-bottom: 18px;
}

.terrain-meta span {
  color: #5f6672;
  font-weight: 600;
}

.terrain-meta i {
  color: var(--bethel-gold);
  margin-right: 6px;
}

.terrain-price {
  color: var(--bethel-gold-dark) !important;
  font-size: 22px;
  font-weight: 800 !important;
}

.terrain-cta-section {
  padding: 95px 0;
  background: linear-gradient(135deg, #003327, #02241d);
}

.terrain-cta-box {
  text-align: center;
  padding: 58px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.terrain-cta-box h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.terrain-cta-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 28px;
}

.terrain-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .terrains-hero {
    padding: 100px 0;
  }

  .terrains-hero-content h1 {
    font-size: 40px;
  }

  .terrains-intro-section {
    padding: 75px 0 20px;
  }

  .terrain-list-section,
  .terrain-cta-section {
    padding: 75px 0;
  }

  .terrain-image img {
    height: 240px;
  }

  .terrain-cta-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 575.98px) {
  .terrains-hero {
    padding: 80px 0;
  }

  .terrains-hero-content h1 {
    font-size: 30px;
  }

  .terrains-hero-content p {
    font-size: 15px;
  }

  .terrain-list-section,
  .terrain-cta-section {
    padding: 65px 0;
  }

  .terrain-content {
    padding: 20px;
  }

  .terrain-content h3 {
    font-size: 22px;
  }

  .terrain-price {
    font-size: 20px !important;
  }

  .terrain-cta-box {
    padding: 42px 20px;
    border-radius: 20px;
  }

  .terrain-cta-box h2 {
    font-size: 28px;
  }

  .terrain-cta-box p {
    font-size: 15px;
  }
}


/* =========================
   PAGE MAISONS PREMIUM
========================= */
.maisons-hero {
  position: relative;
  padding: 130px 0;
  background: url('../img/maisons-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.maisons-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 51, 39, 0.84), rgba(0, 51, 39, 0.62));
}

.maisons-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.maisons-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.maisons-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.maisons-intro-section {
  padding: 90px 0 20px;
  background: #ffffff;
}

.maison-filter-section {
  padding: 0 0 40px;
  background: #ffffff;
}

.maison-list-section {
  padding: 10px 0 95px;
  background: #ffffff;
}

.maison-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.maison-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.featured-maison {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.maison-image {
  position: relative;
  overflow: hidden;
}

.maison-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.maison-card:hover .maison-image img {
  transform: scale(1.1);
}

.maison-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(212, 175, 55, 0.96);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.maison-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 51, 39, 0.72),
    rgba(0, 51, 39, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.maison-card:hover .maison-overlay {
  opacity: 1;
  visibility: visible;
}

.maison-content {
  padding: 24px;
}

.maison-content h3 {
  color: var(--bethel-green);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.maison-location {
  color: #777;
  font-size: 15px;
  margin-bottom: 12px;
}

.maison-location i {
  color: var(--bethel-gold);
  margin-right: 6px;
}

.maison-description {
  color: #5f6672;
  line-height: 1.8;
  margin-bottom: 18px;
}

.maison-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.maison-features span {
  background: #f8f9fa;
  color: #4f5661;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}

.maison-features i {
  color: var(--bethel-gold);
  margin-right: 6px;
}

.maison-cta-section {
  padding: 95px 0;
  background: linear-gradient(135deg, #003327, #02241d);
}

@media (max-width: 991.98px) {
  .maisons-hero {
    padding: 100px 0;
  }

  .maisons-hero-content h1 {
    font-size: 40px;
  }

  .maisons-intro-section {
    padding: 75px 0 20px;
  }

  .maison-list-section,
  .maison-cta-section {
    padding: 75px 0;
  }

  .maison-image img {
    height: 240px;
  }
}

@media (max-width: 575.98px) {
  .maisons-hero {
    padding: 80px 0;
  }

  .maisons-hero-content h1 {
    font-size: 30px;
  }

  .maisons-hero-content p {
    font-size: 15px;
  }

  .maison-list-section,
  .maison-cta-section {
    padding: 65px 0;
  }

  .maison-content {
    padding: 20px;
  }

  .maison-content h3 {
    font-size: 22px;
  }
}




/* =========================
   PAGE CONSTRUCTIONS PREMIUM
========================= */
.constructions-hero {
  position: relative;
  padding: 130px 0;
  background: url('../img/constructions-hero.jfif') center/cover no-repeat;
  overflow: hidden;
}

.constructions-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 51, 39, 0.84), rgba(0, 51, 39, 0.62));
}

.constructions-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.constructions-hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.constructions-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.constructions-intro-section {
  padding: 90px 0 20px;
  background: #ffffff;
}

.construction-list-section {
  padding: 10px 0 95px;
  background: #ffffff;
}

.construction-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.construction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.13);
}

.featured-construction {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.construction-image {
  position: relative;
  overflow: hidden;
}

.construction-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.construction-card:hover .construction-image img {
  transform: scale(1.1);
}

.construction-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(212, 175, 55, 0.96);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.construction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 51, 39, 0.72),
    rgba(0, 51, 39, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.construction-card:hover .construction-overlay {
  opacity: 1;
  visibility: visible;
}

.construction-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--bethel-green);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  transform: translateY(16px);
}

.construction-card:hover .construction-overlay-btn {
  transform: translateY(0);
}

.construction-overlay-btn:hover {
  background: var(--bethel-gold);
  color: #ffffff;
}

.construction-content {
  padding: 24px;
}

.construction-content h3 {
  color: var(--bethel-green);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.construction-location {
  color: #777;
  font-size: 15px;
  margin-bottom: 12px;
}

.construction-location i {
  color: var(--bethel-gold);
  margin-right: 6px;
}

.construction-description {
  color: #5f6672;
  line-height: 1.8;
  margin-bottom: 18px;
}

.construction-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.construction-meta span {
  background: #f8f9fa;
  color: #4f5661;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
}

.construction-meta i {
  color: var(--bethel-gold);
  margin-right: 6px;
}

.construction-expertise-section {
  padding: 95px 0;
  background: #f8f9fa;
}

.construction-expertise-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.construction-expertise-content h2 {
  color: var(--bethel-green);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.construction-expertise-content p {
  color: #5f6672;
  line-height: 1.9;
  margin-bottom: 20px;
}

.construction-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.construction-expertise-list li {
  color: #4f5661;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.construction-expertise-list li i {
  color: var(--bethel-gold);
  font-size: 16px;
}

.construction-cta-section {
  padding: 95px 0;
  background: linear-gradient(135deg, #003327, #02241d);
}

@media (max-width: 991.98px) {
  .constructions-hero {
    padding: 100px 0;
  }

  .constructions-hero-content h1 {
    font-size: 40px;
  }

  .constructions-intro-section,
  .construction-expertise-section,
  .construction-cta-section {
    padding: 75px 0;
  }

  .construction-list-section {
    padding: 10px 0 75px;
  }

  .construction-image img {
    height: 240px;
  }

  .construction-expertise-image img {
    height: 380px;
  }

  .construction-expertise-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .constructions-hero {
    padding: 80px 0;
  }

  .constructions-hero-content h1 {
    font-size: 30px;
  }

  .constructions-hero-content p {
    font-size: 15px;
  }

  .construction-list-section,
  .construction-expertise-section,
  .construction-cta-section {
    padding: 65px 0;
  }

  .construction-content {
    padding: 20px;
  }

  .construction-content h3 {
    font-size: 22px;
  }

  .construction-expertise-image img {
    height: 300px;
    border-radius: 20px;
  }

  .construction-expertise-content h2 {
    font-size: 28px;
  }
}