/* =========================================
   GLOBAL
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #111;
font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}


/* =========================================
   GLOBAL MOBILE FIX
========================================= */

@media (max-width: 768px){

  html,
  body{
    overflow-x:hidden;
  }

  .container{
    padding:0 16px;
  }

  section{
    overflow:hidden;
  }

}

/* DROPDOWN WRAPPER */
.dropdown {
  position: relative;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;

  min-width: 100px;
  padding: 10px 0;

  background: rgba(15, 26, 44, 0.96);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  z-index: 100;
}

/* SHOW */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ITEMS */
.dropdown-menu li {
  list-style: none;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 12px 18px;

  color: #e2e8f0;
  font-size: 14px;

  transition: 0.25s ease;
}

/* HOVER */
.dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: #ff7a00;
}
.navbar.transparent {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: white;
  z-index: 999;
}
.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.navbar.dark {
  background: #0f1a2c;
  color: white;
}

/* LOGO CONTAINER */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 🔥 NEW ICON (CIRCLE + ENGINEERING STYLE) */
.logo-icon {
  width: 42px;
  height: 42px;

  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  color: white;
  font-size: 14px;

  position: relative;
  overflow: hidden;
}

/* subtle engineering lines (unique touch) */
.logo-icon::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgba(255,255,255,0.3);
  transform: rotate(45deg);
}

.logo-icon::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  transform: rotate(-45deg);
}

/* TEXT */
.logo-text strong {
  font-size: 16px;
}

.logo-text small {
  font-size: 10px;
  color: #aaa;
}

/* =========================================
   NAVBAR MENU (CLEAN + UNIQUE)
========================================= */

/* MENU LAYOUT */
.navbar ul {
  display:flex;
  align-items:center;
  list-style:none;
  gap:28px;
  margin:0;
  padding:0;
}
/* DESKTOP ONLY */
@media (min-width:769px){

  nav{
    flex:1;
    display:flex;
    justify-content:center;
  }

}
/* LINKS */
.navbar a {
  position: relative;
  color: inherit;
  font-size: 14px;
  padding: 5px 0;
  transition: 0.3s ease;
}

/* 🔥 UNDERLINE ANIMATION (CENTER OUT) */
.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff7a00;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

/* HOVER + ACTIVE */
.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* =========================================
   BUTTON (UNIQUE STYLE)
========================================= */

.btn-devis {
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
  padding: 10px 22px;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* HOVER EFFECT */
.btn-devis:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,122,0,0.4);
}

/* =========================================
   HERO (HOME)
========================================= */
/* =========================================
   HERO (PREMIUM VERSION)
========================================= */

.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(10,20,40,0.65), rgba(10,20,40,0.65)),
              url("../images/website/bridge.webp") center/cover no-repeat;
  color: white;
  text-align: center;
   background-color: transparent;
}

/* CONTAINER */
.hero-container {
  max-width: 620px;
  padding: 20px;
}

/* SMALL TAG */
.hero-tag {
  color: #ff7a00;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* TITLE */
.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* TEXT */
.hero-text {
  font-size: 17px;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 45px; /* 🔥 perfect spacing */
}

/* BUTTON WRAPPER */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #ff7a00;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #e86d00;
  transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.6);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #0f1a2c;
  transform: translateY(-2px);
}
.disabled-project{
  cursor: default;
  pointer-events: none;
  opacity: 0.75;
}
@media (max-width: 600px) {

  .hero {
    height: auto;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-text {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* =========================================
  WHY
========================================= */

.why {
  padding: 70px 80px;
  background: white;
}

/* GRID LAYOUT */
.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* TEXT SIDE */
.why-text {
  flex: 1;
}

.why-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.why-text p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* LIST */
.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

/* ICON */
.why-list i {
  color: #ff7a00;
  font-size: 18px;
}

/* IMAGE SIDE */
.why-image {
  flex: 1;
 background: transparent; /* 👈 remove white */
  padding: 0;
}

.why-image img {
  width: 100%;
  border-radius: 12px;
 mix-blend-mode: multiply;
}

.why-list li:hover i {
  transform: scale(1.2);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-list li {
    justify-content: center;
  }
}

/* =========================
   IMAGE SLIDER
========================= */

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* All images stacked */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.8s ease;
  object-fit: cover;
  mix-blend-mode: multiply;
}

/* Active image */
.slide.active {
  opacity: 1;
  position: relative;
}

/* Optional: smooth zoom effect */
.slide.active {
  animation: zoomSlide 6s ease;
}

@keyframes zoomSlide {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

/* =========================================
   FEATURED (PREMIUM VERSION)
========================================= */

.featured {
  height: 420px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  background: url("../images/building1.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* DARK OVERLAY (cinematic effect) */
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10,20,40,0.7),
    rgba(10,20,40,0.85)
  );
}

/* CONTENT */
.featured-content {
  position: relative;
  z-index: 2;

  max-width: 600px;
  padding: 40px;

  border-radius: 16px;

  /* GLASS EFFECT 🔥 */
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* TITLE */
.featured-content h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

/* TEXT */
.featured-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* BUTTON */
.featured .btn-primary {
  padding: 14px 26px;
  font-size: 15px;
}

.featured:hover {
  background-size: 110%;
  transition: 0.6s ease;
}

.featured-content {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   SERVICES (HOME GRID)
========================================= */
/* =========================================
   SERVICES (PREMIUM VERSION)
========================================= */

.services {
  background: linear-gradient(to bottom, #f9fafb, #eef2f7);
  padding: 70px 80px;
  text-align: center;
}

/* TAG */
.section-tag {
  color: #ff7a00;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* TITLE */
.services h2 {
  margin-bottom: 70px;
  font-size: 38px;
  font-weight: 600;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
/* =========================================
   MOBILE SERVICES
========================================= */

@media (max-width:768px){

  .services{
    padding:60px 20px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .services h2{
    font-size:30px;
    margin-bottom:40px;
  }

}
/* CARD */
.service-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;

  text-align: left;
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

/* 🔥 HOVER EFFECT (more unique) */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* 🔥 LEFT ACCENT BAR (VERY UNIQUE) */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: #ff7a00;
  transition: 0.3s;
}

.service-card:hover::before {
  height: 100%;
}

/* ICON */
.icon {
  width: 55px;
  height: 55px;

  background: linear-gradient(135deg, #fff3e9, #ffe5d0);
  color: #ff7a00;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  margin-bottom: 20px;

  font-size: 20px;
  transition: 0.3s;
}

/* ICON HOVER */
.service-card:hover .icon {
  transform: scale(1.1) rotate(3deg);
}

/* TITLE */
.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #111827;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

/* FOOTER BUTTON */
.services-footer {
  margin-top: 50px;
}

/* UNIQUE LINK STYLE */
.btn-all {
  position: relative;
  color: #111827;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
font-family: 'Poppins', sans-serif;
}

/* underline animation */
.btn-all::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff7a00;
  transition: 0.3s;
}

.btn-all:hover::after {
  width: 100%;
}

.btn-all:hover {
  color: #ff7a00;
}
/* =========================================
   SERVICES PAGE HERO
========================================= */
.services-hero {
  height: 300px;
  background: linear-gradient(135deg, #0f1a2c, #1c2b45);
  display: flex;
  align-items: center;
  padding: 100px 80px 0;
  color: white;
}

.hero-tag {
  color: #ff7a00;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.services-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-desc {
  color: #bbb;
}

/* =========================================
   SERVICES LIST (FIXED PROPORTION)
========================================= */
.container {
  max-width: 1200px;   /* controls total width */
  margin: 0 auto;      /* centers everything */
  padding: 0 20px;
}
.services-list {
  padding: 80px 120px;
  background: #f9f9f9;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 100px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.service-text {
  flex: 1;
  max-width: 480px;
}

.service-text h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.service-text p {
  color: #666;
  margin-bottom: 20px;
}

/* ICON */
.service-icon {
  width: 50px;
  height: 50px;
  background: #fff3e9;
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* LIST */
.service-text ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff7a00;
}

/* IMAGE (KEY FIX) */
.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

/* =========================================
   CTA
========================================= */
.cta {
  background: #ff7a00;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

/* =========================================
   FOOTER (FULL CLEAN VERSION)
========================================= */

.footer {
  background: linear-gradient(135deg, #0f1a2c 80%, #ff7a00);
  color: #ccc;
  padding: 60px 20px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* TITLES */
.footer h4 {
  color: white;
  margin-bottom: 15px;
}

/* =========================================
   LOGO (MATCH NAVBAR STYLE)
========================================= */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff9a3c);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  color: white;
  font-size: 13px;

  position: relative;
  overflow: hidden;
}

/* subtle engineering lines */
.footer .logo-icon::before,
.footer .logo-icon::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 2px;
  background: rgba(255,255,255,0.2);
}

.footer .logo-icon::before {
  transform: rotate(45deg);
}

.footer .logo-icon::after {
  transform: rotate(-45deg);
}

.footer .logo-text strong {
  color: white;
  font-size: 16px;
}

/* =========================================
   LINKS (UNDERLINE ANIMATION)
========================================= */

.footer a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

/* underline animation */
.footer a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff7a00;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

/* hover */
.footer a:hover::after {
  width: 100%;
}

.footer a:hover {
  color: white;
}

/* spacing */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

/* =========================================
   CONTACT TEXT
========================================= */

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 12px;
  font-size: 14px;
  color: #ccc;
}

.footer-contact p i {
  width: 18px;
  color: #ff7a00;
  font-size: 15px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.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: white;
  font-size: 16px;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #ff7a00;
  transform: translateY(-3px);
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;

  position: relative;
  width: fit-content;

  color: #ccc;
  margin-bottom: 12px;
  font-size: 14px;

  transition: 0.3s ease;
}

.footer-contact-link i {
  color: #ff7a00;
  font-size: 15px;
}

/* =========================================
   BOTTOM BAR
========================================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


/* =========================================
   PLANS SECTION (FINAL FIXED VERSION)
========================================= */

.plans {
  background:  linear-gradient(to bottom, #f9fafb, #eef2f7);
  padding: 70px 80px;
  
}

.plans-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}


/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.plan-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  position: relative; /* 🔥 IMPORTANT */
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.plan-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.plan-image {
  position: relative;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-card:hover .plan-image img {
  transform: scale(1.08);
}

.plan-image::after {
  display: none;
}

/* BADGE */
.plan-badge {
  position: absolute;
  top: 15px;
  left: 15px;

  background: linear-gradient(135deg, #ff7a00, #ff9a3c);
  color: white;

  padding: 6px 14px;
  border-radius: 20px;

  font-size: 12px;
  font-weight: 600;

  z-index: 3;

  box-shadow: 0 5px 15px rgba(255,122,0,0.4);
}

/* OVERLAY */
.overlay-view {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.5);

  opacity: 0;
  transition: 0.3s ease;

  z-index: 2;
}

.plan-card:hover .overlay-view {
  opacity: 1;
}

/* BUTTON */
.btn-view {
  background: #ff7a00;
  color: white;

  padding: 12px 24px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 500;

  text-decoration: none;

  transform: translateY(15px) scale(0.95);
  opacity: 0;

  transition: 0.4s ease;

  position: relative;
  z-index: 3; /* 🔥 CLICKABLE */
}

.plan-card:hover .btn-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* CONTENT */
.plan-content {
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.plan-card:hover .plan-content {
  transform: translateY(-4px);
}

.plan-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
   color: #333; 
  
}

.plan-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

/* INFO */
.plan-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: #ff7a00;
  font-weight: 700;
  font-size: 18px;
}

.size {
  font-size: 13px;
  color: #888;
}

.size i {
  margin-right: 6px;
  color: #aaa;
}

/* ORANGE GLOW SIGNATURE */
.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 0 rgba(255,122,0,0);
  transition: 0.4s ease;
  pointer-events: none;
}

.plan-card:hover::after {
  box-shadow: 0 0 25px rgba(255,122,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .plans {
    padding: 60px 20px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plans-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

.details-link {
  color: #ff7a00;   /* 🔥 your brand color */
  font-weight: 600;
  font-size: 14px;
}

.plan-card:hover .details-link {
  color: #e66a00;
}

/* =========================================
   SIGNATURE ANIMATION (BUILD HOUSE STYLE)
========================================= */

/* 1. SMOOTH CARD LIFT */
.plan-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* 2. IMAGE ZOOM WITH SOFT EASE */
.plan-image img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-card:hover .plan-image img {
  transform: scale(1.08);
}

/* 3. ORANGE GLOW EFFECT (your signature 🔥) */
.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;

  box-shadow: 0 0 0 rgba(255,122,0,0);
  transition: 0.4s ease;
}

.plan-card:hover::after {
  box-shadow: 0 0 25px rgba(255,122,0,0.25);
}

/* 4. BUTTON FLOAT IN */
.btn-view {
  transform: translateY(15px) scale(0.95);
  opacity: 0;
  transition: 0.4s ease;
}

.plan-card:hover .btn-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* 5. TEXT MICRO-MOVE */
.plan-content {
  transition: transform 0.3s ease;
}

.plan-card:hover .plan-content {
  transform: translateY(-4px);
}

/* =========================================
   PLAN HOVER EFFECT
========================================= */

/* IMAGE ZOOM */
.plan-image {
  position: relative;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ZOOM EFFECT */
.plan-card:hover .plan-image img {
  transform: scale(1.1);
}

/* DARK OVERLAY */
.overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.3s;
}

/* SHOW ON HOVER */
.plan-card:hover .overlay-btn {
  opacity: 1;
}

/* BUTTON STYLE */
.btn-view {
  background: #ff7a00;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  transform: translateY(20px);
  transition: 0.3s;
}

/* BUTTON ANIMATION */
.plan-card:hover .btn-view {
  transform: translateY(0);
}

/* REMOVE LINK STYLE */
.plan-content {
  display: block;
  color: inherit;
}

/* FOOTER CENTER */
.plans-footer {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* =========================================
   PRODUITS STYLE (CATALOG / MARKETPLACE 🔥)
========================================= */

.produits {
  background: white;
  padding: 70px 80px;
}
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.product-card-v2 {
  background: white;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.product-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-card-v2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BODY */
.product-body {
  padding: 18px;
}

/* TITLE */
.product-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

/* PRICE */
.product-price {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.product-price span {
  color: #0077cc; /* 🔵 blue like your example */
  font-weight: 700;
  font-size: 16px;
}

/* DETAILS GRID */
.product-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;

  border-top: 1px solid #eee;
  padding-top: 10px;
}

/* EACH ITEM */
.product-details div {
  text-align: center;
  font-size: 12px;
  color: #666;
}

.product-details strong {
  display: block;
  font-size: 14px;
  color: #222;
}



/* =========================================
   PRODUITS + OVERLAY + BADGE 🔥
========================================= */

/* IMAGE WRAPPER */
.product-image {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.product-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

/* ZOOM like projets */
.product-card-v2:hover .product-image img {
  transform: scale(1.08);
}



/* OVERLAY BUTTON */
.product-card-v2 .overlay-btn {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.45);

  opacity: 0;
  transition: 0.3s;
}

.product-card-v2:hover .overlay-btn {
  opacity: 1;
}

/* BUTTON SAME STYLE */
.product-card-v2 .btn-view {
  background: #ff7a00; /* keep brand */
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;

  transform: translateY(20px);
  transition: 0.3s;
}

.product-card-v2:hover .btn-view {
  transform: translateY(0);
}

/* KEEP BADGE SAME AS PROJECTS */
.product-card-v2 .plan-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
}

/* CARD HOVER (SOFT) */
.product-card-v2 {
  transition: 0.3s ease;
}

.product-card-v2:hover {
  transform: translateY(-8px);
}

/* 🔵 KEEP BLUE PRICE (GOOD CHOICE) */
.product-price span {
  color: #ff7a00;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .products {
    padding: 60px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
/* IMAGE WRAPPER */
.product-image {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.product-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}



/* OVERLAY BUTTON CONTAINER */
.product-card-v2 .overlay-btn {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.5);

  opacity: 0;
  transition: 0.3s ease;

  z-index: 2; /* 🔥 above image */
}

/* SHOW ON HOVER */
.product-card-v2:hover .overlay-btn {
  opacity: 1;
}

/* BUTTON */
.product-card-v2 .btn-view {
  background: #ff7a00;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;

  transform: translateY(15px);
  opacity: 0;

  transition: 0.3s ease;

  z-index: 3; /* 🔥 top */
}

/* BUTTON ANIMATION */
.product-card-v2:hover .btn-view {
  transform: translateY(0);
  opacity: 1;
}
/* FOOTER CENTER */
.products-footer {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* BUTTON STYLE (CLEAN OUTLINE) */
.bttn-catalogue {
  border: 2px solid #ddd;
  padding: 14px 30px;
  border-radius: 40px;

  font-size: 14px;
  font-weight: 600;

  color: #333;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* 🔥 HOVER (YOUR BRAND ORANGE) */
.bttn-catalogue:hover {
  border-color: #ff7a00;
  color: #ff7a00;

  transform: translateY(-2px);
}

.bttn-catalogue:hover {
  box-shadow: 0 5px 15px rgba(255,122,0,0.2);
}



/* =========================================
   PROJECT CARDS — Premium / Cinematic Hover
========================================= */
.plan-card {
  position: relative;
  border: 1px solid transparent;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  box-shadow: 0 0 0 rgba(255,122,0,0);
  transition: 0.4s ease;

  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: #ff7a00;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,122,0,0.12);
}

.plan-card:hover::after {
  box-shadow: 0 0 30px rgba(255,122,0,0.22);
}


/* =========================================
   PRODUCT CARDS — Clean Marketplace Hover
========================================= */
.product-card-v2 {
  position: relative;
  border: 1px solid transparent;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-card-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  box-shadow: 0 0 0 rgba(255,122,0,0);
  transition: 0.35s ease;

  pointer-events: none;
}

.product-card-v2:hover {
  transform: translateY(-8px);
  border-color: #ff7a00;

  box-shadow:
    0 18px 35px rgba(0,0,0,0.10),
    0 0 0 1px rgba(255,122,0,0.10);
}

.product-card-v2:hover::after {
  box-shadow: 0 0 22px rgba(255,122,0,0.15);
}

/* =================================================
   TESTIMONIALS (ENGINEERING STYLE)
================================================= */

.testimonials{
  padding:70px 80px;
  background:linear-gradient(to bottom, #f9fafb, #eef2f7);
  text-align:center;
}

/* SLIDER */
.testimonial-slider{
  position:relative;
  overflow:hidden;
  margin-top:40px;
}

.testimonial-track{
  display:flex;
  gap:25px;
  transition:transform .5s ease;
}

/* CARD */
.testimonial-card{
  min-width:300px;
  max-width:300px;
  background:#fff;
  padding:28px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-align:left;
  border-top:4px solid #ff7a00; /* 🔥 engineering accent */
}



.review-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.review-header img{
  width:45px;
  height:45px;
  border-radius:50%;
}

/* NAME */
.review-header h4{
  margin:0;
  font-size:14px;
}

/* STARS */
.stars{
  color:#ff7a00;
  font-size:14px;
}

/* TEXT */
.testimonial-card p{
  color:#555;
  font-size:14px;
}

/* BUTTONS */
.slider-btn{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  background:#ff7a00;
  color:#fff;
  border:none;
  font-size:18px;
  padding:10px 14px;
  cursor:pointer;
  border-radius:6px;
  z-index:2;
}

.slider-btn.prev{
  left:-10px;
}

.slider-btn.next{
  right:-10px;
}

/* LIKE BUTTON */
.like-btn{
  margin-top:12px;
  border:none;
  background:none;
  cursor:pointer;
  color:#777;
  font-size:13px;
}

.like-btn:hover{
  color:#ff7a00;
}


/* =================================================
   REVIEW FORM (ENGINEERING STYLE)
================================================= */

.review-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:80px 20px;
  background:#f5f5f5;
  min-height:100vh;
}

.review-box{
  background:#fff;
  padding:45px;
  border-radius:10px;
  max-width:540px;
  width:100%;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
  border-top:4px solid #ff7a00; /* 🔥 branding */
}

/* TITLE */
.review-box h2{
  text-align:center;
  font-size:26px;
  margin-bottom:6px;
}

/* LOGO */
.review-logo{
  width:60px;
  display:block;
  margin:10px auto 15px auto;
}

/* SUBTITLE */
.review-sub{
  text-align:center;
  color:#777;
  margin-bottom:25px;
  font-size:14px;
}

/* FORM */
.review-box form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* LABEL */
.review-box label{
  font-size:14px;
  font-weight:600;
}

/* INPUT */
.review-box textarea,
.review-box input{
  width:100%;
  padding:14px;
  border-radius:6px;
  border:1px solid #ddd;
  font-size:14px;
  outline:none;
}

.review-box textarea:focus,
.review-box input:focus{
  border-color:#ff7a00;
}

/* TEXTAREA */
.review-box textarea{
  min-height:110px;
  resize:none;
}

/* STAR RATING */
.star-rating{
  display:flex;
  justify-content:center;
  gap:8px;
  font-size:28px;
  margin-bottom:10px;
  flex-direction:row-reverse;
}

.star-rating input{
  display:none;
}

.star-rating label{
  color:#ddd;
  cursor:pointer;
  transition:0.2s;
}

/* HOVER */
.star-rating label:hover,
.star-rating label:hover ~ label{
  color:#ff7a00;
}

/* SELECTED */
.star-rating input:checked ~ label{
  color:#ff7a00;
}

/* SUBMIT */
.review-submit{
  margin:15px auto 0 auto;
  background:#ff7a00;
  color:#fff;
  border:none;
  padding:12px 28px;
  border-radius:6px;
  font-size:15px;
  cursor:pointer;
  transition:0.3s;
}

.review-submit:hover{
  background:#e86d00;
}

/* NOTE */
.review-note{
  text-align:center;
  font-size:12px;
  color:#999;
  margin-top:12px;
}

/* SUCCESS */
.review-success{
  display:none;
  margin:20px auto;
  padding:12px 18px;
  background:#e8f9ee;
  color:#0f5132;
  border:1px solid #badbcc;
  border-radius:8px;
  text-align:center;
  width:fit-content;
}

/* =================================================
   RATING SUMMARY
================================================= */

.rating-summary{
  text-align:center;
  margin-top:15px;
  margin-bottom:40px;
}

.rating-summary h3{
  font-size:28px;
  font-weight:700;
  color:#111;
}

.rating-summary p{
  font-size:14px;
  color:#777;
}

/* =========================================
   TESTIMONIAL FORM (ENGINEERING)
========================================= */

.testimonial-form{
  padding:100px 20px;
  background:#f9f9f9;
  text-align:center;
}

/* TITLE */
.testimonial-form h2{
  font-size:32px;
  margin-bottom:10px;
}

.testimonial-form p{
  color:#777;
  margin-bottom:40px;
  font-size:14px;
}

/* FORM */
.testimonial-form form{
  max-width:500px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
  background:white;
  padding:35px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border-top:4px solid #ff7a00; /* 🔥 branding */
}

/* INPUTS */
.testimonial-form input,
.testimonial-form textarea{
  padding:14px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

/* FOCUS EFFECT */
.testimonial-form input:focus,
.testimonial-form textarea:focus{
  border-color:#ff7a00;
}

/* TEXTAREA */
.testimonial-form textarea{
  min-height:120px;
  resize:none;
}

/* STAR RATING (OPTIONAL ADD 🔥) */
.testimonial-form .star-rating{
  display:flex;
  justify-content:center;
  gap:8px;
  font-size:26px;
  flex-direction:row-reverse;
}

.testimonial-form .star-rating input{
  display:none;
}

.testimonial-form .star-rating label{
  color:#ddd;
  cursor:pointer;
  transition:0.2s;
}

.testimonial-form .star-rating label:hover,
.testimonial-form .star-rating label:hover ~ label{
  color:#ff7a00;
}

.testimonial-form .star-rating input:checked ~ label{
  color:#ff7a00;
}

/* BUTTON */
.testimonial-form button{
  padding:14px;
  background:#ff7a00;
  color:white;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-size:15px;
  transition:0.3s;
}

.testimonial-form button:hover{
  background:#e86d00;
}

/* SUCCESS MESSAGE */
.testimonial-success{
  display:none;
  margin-top:20px;
  color:#0f5132;
  background:#e8f9ee;
  padding:12px;
  border-radius:6px;
  font-size:14px;
}
/* ⭐ HOMEPAGE STARS */
.star-icon {
  color: #ff7a00; /* 🔥 orange */
  font-size: 24px;
  margin-right: 6px;
}

#ratingValue {
  font-weight: 700;
  font-size: 22px;
}


/* =========================================
   CTA SECTION (HOMEPAGE)
========================================= */

.cta-section {
  background: #f9f9f9;
  text-align: center;
  padding: 70px 20px;
}

/* SMALL TAG */
.cta-tag {
  color: #ff7a00;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

/* TITLE */
.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

/* TEXT */
.cta-text {
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: #666;
  line-height: 1.6;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* PRIMARY BUTTON (already exists in your CSS but safe) */
.btn-primary {
  background: #ff7a00;
  color: white;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e86d00;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 1px solid #ddd;
  padding: 14px 26px;
  border-radius: 6px;
  color: #333;
  font-size: 14px;
  background: white;
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #ff7a00;
  color: #ff7a00;
}





/* =========================================
   CONTACT PAGE
========================================= */
.contact-section {
  padding: 80px 80px;
  background: #f9f9f9;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact-info,
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff7a00;
  color: white;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 50%;
}






/* =========================================
   REMAINING PAYMENT CARD
========================================= */
.remaining-payment-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.remaining-payment-card h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #111;
}

.remaining-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}

.remaining-grid div {
  background: #f8f8f8;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
}

.remaining-due-box {
  background: linear-gradient(135deg, #ff7a00, #ff9838);
  color: white;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  margin-top: 10px;
  box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

/* =========================================
   BILLING CARD IMPROVEMENT
========================================= */
.checkout-right {
  display: block;
}

.billing-section {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.billing-section h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
  .remaining-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   MOBILE WHY SECTION
========================================= */

@media (max-width:768px){

  .why{
    padding:60px 20px;
  }

  .why-container{
    gap:40px;
  }

  .why-text h2{
    font-size:28px;
  }

}

/* =========================================
   MOBILE PROJECTS & PRODUCTS
========================================= */

@media (max-width:768px){

  .plans,
  .produits{
    padding:60px 20px;
  }

  .plans-grid,
  .products-grid{
    grid-template-columns:1fr;
  }

  .plans-header,
  .products-header{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width:768px){

  .footer{
    padding:50px 20px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

}





/* =========================================
   MOBILE NAVBAR
========================================= */

.menu-toggle{
  display:none;
}

@media (max-width:768px){

  .navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
  }

  .navbar .container{
    height:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 20px;

    flex-wrap:wrap;
  }

  /* LOGO */
  .logo-text small{
    display:none;
  }

  /* HAMBURGER */
  .menu-toggle{
    display:block;
    font-size:32px;
    color:white;
    cursor:pointer;
  }

  /* NAV */
 nav{
  width:100%;
  display:none;

  background:#0f1a2c;

  margin-top:20px;
  padding:20px 0;

  border-radius:14px;

  animation:fadeMenu .25s ease;
}

  nav.active{
    display:block;
  }

  .navbar ul{
    flex-direction:column;
    align-items:center;

    gap:20px;

    margin:0;
  }

  .btn-devis{
    display:none;
  }

}
@keyframes fadeMenu{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}



 /* CHECKOUT MOBILE MONEY */
.mobile-money-box{
  margin-top:20px;
  padding:18px;
  border:1px solid #eee;
  border-radius:12px;
  background:#fafafa;
}

.mobile-money-box h4{
  margin-bottom:10px;
}

.mobile-money-box p{
  font-size:14px;
  color:#555;
  line-height:1.5;
  margin-bottom:15px;
}

.btn-mobile-money{
  display:block;
  text-align:center;
  padding:12px;
  border-radius:10px;
  background:#25D366;
  color:white;
  font-weight:600;
  transition:0.3s;
}

.btn-mobile-money:hover{
  opacity:0.9;
}

/* LANGUAGE SWITCHER */
.language-dropdown select{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;

  padding: 8px 14px;
  border-radius: 10px;

  font-size: 13px;
  cursor: pointer;

  outline: none;
  transition: 0.3s ease;
}

/* OPTIONS */
.language-dropdown select option{
  background:#0f1a2c;
  color:white;
}

/* HOVER */
.language-dropdown select:hover{
  border-color:#ff7a00;
}

@media (max-width:768px){

  .testimonials{
    padding:60px 10px;
  }

  .testimonial-card{
    min-width:92vw;
    max-width:92vw;
    padding:22px;
  }

  .testimonial-card p{
    font-size:16px;
    line-height:1.6;
  }

}