/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
}

/* ========== SITE HEADER ========== */
.site-header {
  background-color: #1e1e1e;
  padding: 12px 20px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT SIDE (menu + logo + nav) */
.header-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 24px;
  height: 3px;
  background-color: #C8923C;
  margin: 3px 0;
}

.logo-section {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.logo-section:hover {
  opacity: 0.8;
}

.logo {
  width: 45px;
  height: auto;
  margin-right: 10px;
}

.company-text h1 {
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.2;
}

.company-text span {
  font-size: 0.85rem;
  color: #ccc;
}

/* NAVIGATION LINKS */
.main-nav {
  display: flex;
  gap: 15px;
}

.main-nav a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-right: 2px solid #C8923C;
  padding-right: 10px;
}

.main-nav a:last-child {
  border-right: none;
}

/* RIGHT SIDE (lang + search) */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language Selector */
.lang-wrap {
  position: relative;
  display: inline-block;
}

.lang-trigger {
  background: white;
  color: black;
  font-weight: bold;
  padding: 5px 12px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lang-trigger:hover {
  background: #f0f0f0;
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 70%;
  transform: translateX(-50%);
  background: #1e1e1e;
  border: 1px solid #C8923C;
  border-radius: 3px;
  min-width: 120px;
  display: none;
  flex-direction: column;
  z-index: 1001;
  margin-top: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.lang-menu.active {
  display: flex;
}

.lang-item {
  background: none;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.lang-item:hover {
  background: #333;
}

.lang-item.active {
  background: #C8923C;
  color: black;
  font-weight: bold;
}

.search-icon {
  font-size: 1.2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.35));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 18px;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 2rem;
  line-height: 1.4;
  margin: 20px 0 28px;
  color: #f3f3f3;
}

.cta-button {
  background-color: #C8923C;
  color: white;
  padding: 12px 24px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

/* ========== SIDE MENU ========== */
.side-menu {
  position: fixed;
  top: 64px; /* Hauteur du header */
  left: -260px;
  width: 260px;
  height: calc(100% - 64px); /* Pour s’arrêter sous le header */
  background-color: #2c2c2c;
  padding-top: 20px;
  transition: left 0.3s ease;
  z-index: 900; /* inférieur au header */
}

html[dir="rtl"] .side-menu {
  left: auto;
  right: -260px;
  transition: right 0.3s ease;
}


.side-menu ul {
  list-style: none;
}

.side-menu li {
  border-bottom: 1px solid #444;
}

.side-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.side-menu a:hover {
  background-color: #444;
}

.side-menu .icon {
  margin-right: 10px;
  color: #C8923C;
}

.side-menu .arrow {
  color: #C8923C;
}

/* Show menu when active */
.side-menu.active {
  left: 0;
}

html[dir="rtl"] .side-menu.active {
  left: auto;
  right: 0;
}

/* Overlay when menu is open */
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 260px;
  width: calc(100% - 260px);
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

html[dir="rtl"] body.menu-open::before {
  left: auto;
  right: 260px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  color: #1e1e1e;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight-box {
  background-color: #C8923C;
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
}

.about-left h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 20px 0;
}

.highlight-text {
  color: #C8923C;
}

.read-more-btn {
  display: inline-block;
  background-color: #C8923C;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  margin-top: 20px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background-color: #b07b2e;
}

.about-right {
  flex: 1;
  min-width: 300px;
}

.about-right p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  font-size: 1rem;
  color: #1e1e1e;
  font-weight: 500;
}

/* ========== SECTORS SECTION ========== */
.sectors-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.sectors-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000000;
}

.sectors-title .dash {
  color: #C8923C;
  font-weight: bold;
  margin: 0 10px;
}

/* Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced Card */
.sector-card-enhanced {
  background: linear-gradient(135deg, #e0e0e0 0%, #e0e0e0 100%);
  border-radius: 12px;
  border: 1px solid rgba(200, 146, 60, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}

.sector-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(200, 146, 60, 0.25);
  border-color: rgba(200, 146, 60, 0.5);
}

.sector-card-header {
  background: rgb(70, 70, 70);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 146, 60, 0.15);
}

.sector-icon-enhanced {
  font-size: 2.5rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffce7e 0%, #a67c2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(200, 146, 60, 0.3);
}

.sector-badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-core {
  background: rgba(82, 196, 26, 0.15);
  color: #52c41a;
  border: 1px solid rgba(82, 196, 26, 0.3);
}

.badge-specialty {
  background: rgba(24, 144, 255, 0.15);
  color: #1890ff;
  border: 1px solid rgba(24, 144, 255, 0.3);
}

.sector-card-content {
  padding: 24px;
}

.sector-card-content h3 {
  color: #cf8f27;
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.sector-description {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.sector-stats {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-item strong {
  color: #C8923C;
  font-size: 1.3rem;
  font-weight: 700;
}

.stat-item span {
  color: #000000;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sector-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sector-features li {
  color: #000000;
  font-size: 0.85rem;
  padding: 6px 0;
}

/* Cards for index.html homepage */
.sector-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #141414 100%);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(200, 146, 60, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(200, 146, 60, 0.25);
  border-color: rgba(200, 146, 60, 0.5);
}

.sector-card .sector-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.sector-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.sector-card p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Filter chips bar */
.sectors-filter {
  background-color: #1e1e1e;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  position: sticky;
  top: 64px;
  z-index: 100;
  padding: 12px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: top 0.3s ease;
}

.sectors-filter.hidden {
  top: 0px;
  border-top: none;
}
.sectors-filter .container {
  max-width: 1100px;
  margin: 0 auto;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-chip {
  background: #000;
  border: 1px solid #C8923C;
  color: #d6d6d6;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.filter-chip:hover {
  background: #C8923C;
  color: #000;
}
.filter-chip.active {
  background: #C8923C;
  color: #000;
}

/* Utility for filtering */
.is-hidden { display: none !important; }

.accordion-projects {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.projects-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.accordion-container {
  display: flex;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.accordion-item {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: flex 0.5s ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-item:hover {
  flex: 5;
}

.accordion-item.active {
  flex: 5;
}

.accordion-content {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: left;
  padding: 20px;
  border-radius: 6px;
  max-width: 90%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-item:hover .accordion-content,
.accordion-item.active .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

.read-more-btn {
  background-color: #990000;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  display: inline-block;
  font-weight: bold;
}

/* ========== ICONIC PROJECTS SECTION ========== */
.iconic-projects-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #1e1e1e;
  text-align: center;
}

.projects-title .dash {
  color: #C8923C;
  font-weight: bold;
  margin: 0 10px;
}

.projects-carousel {
  /* Slick carousel will handle the layout */
  margin: 0 -15px;
  padding: 20px 0;
}

.projects-carousel .slick-slide {
  padding: 0 15px;
}

.projects-carousel .slick-track {
  display: flex;
  align-items: stretch;
}

.projects-carousel .slick-slide > div {
  height: 100%;
}

.project-card {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(200, 146, 60, 0.15);
}

/* Slick nav buttons */
.projects-carousel .slick-prev,
.projects-carousel .slick-next {
  display: none !important;
}

.project-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.project-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.carousel-btn {
  background-color: #C8923C;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background-color: #a67c2a;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .project-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 250px;
  }

  /* Hide navigation links on small screens */
  .main-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .project-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .projects-title {
    font-size: 1.5rem;
  }
}

/* ========== SPECIALIZED SECTION ========== */
.specialized-section {
  background-color: #505050;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.specialized-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Overlay darkness */
  z-index: 1;
}

.specialized-overlay {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.specialized-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.specialized-title .dash {
  color: #C8923C;
  font-weight: bold;
  margin: 0 10px;
}

.specialized-description {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 40px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.capability-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 6px;
  text-align: left;
}

.capability-item strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.capability-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ========== SUSTAINABILITY SECTION ========== */
.sustainability-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.sustainability-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

/* Image column */
.sustainability-image {
  flex: 1;
  min-width: 300px;
}

.sustainability-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #C8923C, #a67c2a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.large-icon {
  font-size: 5rem;
  display: inline-block;
}

.sustainability-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Content column */
.sustainability-content {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2rem;
  color: #C8923C;
  font-weight: bold;
  margin-bottom: 30px;
}

.sustainability-box h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
}

.sustainability-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #111;
  margin-bottom: 20px;
}

.sustainability-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0;
}

.sustainability-features .feature {
  background: #f5f5f5;
  padding: 12px 15px;
  border-radius: 4px;
  color: #1e1e1e;
  font-weight: 500;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C8923C;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.read-more-btn {
  display: inline-block;
  background-color: #C8923C;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #b07b2e;
}

/* RTL Footer Style */
.footer-ar {
  background: url('images/footer-bg-city.svg') no-repeat center bottom;
  background-size: cover;
  padding: 40px 20px 20px;
  direction: rtl;
  color: #333;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

.footer-links a:hover {
  color: #C8923C;
}

.social-icons img {
  width: 32px;
  height: 32px;
  margin-left: 10px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #444;
}

/* Color helpers */
.orange {
  color: #C8923C;
}

.left-align {
  text-align: right;
}
.site-footer {
  background: linear-gradient(135deg, #141414 0%, #0e0e0e 100%);
  color: #f5f5f5;
  padding: 70px 24px 30px;
  font-size: 14px;
  border-top: 1px solid #2c2c2c;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 24px;
}
.footer-center a,
.footer-center a:visited,
.footer-center a:hover {
  color: #ffffff; /* Blanc */
}


.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.footer-top h4 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #f8f8f8;
}

.footer-left p {
  color: #d6d6d6;
  line-height: 1.6;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}

.footer-center ul, .footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-center li, .footer-right li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-center i, .footer-right i {
  margin-right: 10px;
  color: #C8923C;
}

.footer-bottom {
  border-top: 1px solid #2f2f2f;
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 34px auto 0;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #f8f8f8;
  background: #1d1d1d;
  border: 1px solid #2c2c2c;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover {
  background: #C8923C;
  border-color: #C8923C;
  color: #0f0f0f;
  transform: translateY(-2px);
}

.footer-links a {
  color: #d6d6d6;
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links a:hover {
  color: #C8923C;
  text-decoration: underline;
  text-decoration-color: #C8923C;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-copyright {
  text-align: center;
  color: #777;
  font-size: 12px;
  padding-top: 15px;
  padding-bottom: 10px;
}

/* Icônes (contact et expertises) */
.footer-center i,
.footer-right i {
  color: #C8923C; /* accent doré */
  margin-right: 10px;
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-center li,
.footer-right li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #e6e6e6;
}
/* ========== PROJECT CARDS - CLICKABLE STYLING ========== */
.projects-carousel a.project-card {
  text-decoration: none;
  color: inherit;
}

/* ========== PROJECT DETAIL PAGE ========== */
.projects-detail-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

/* Project page hero styling */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #141414 0%, #0e0e0e 50%, rgba(200,146,60,0.2) 100%);
  overflow: hidden;
  margin-top: 64px; /* offset fixed header */
}
.page-hero .hero-overlay { /* reuse structure */
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(200,146,60,0.15), transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(200,146,60,0.12), transparent 45%);
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero .hero-content h1 {
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}
.page-hero .hero-content p {
  color: #d6d6d6;
  margin-top: 8px;
}

.projects-detail-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.project-detail {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 2px solid #222;
  scroll-margin-top: 100px;
}

.project-detail:last-child {
  border-bottom: none;
}

.project-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}

.project-detail-header h2 {
  font-size: 1.2rem;
  color: #000000;
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}

.project-location {
  color: #C8923C;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(200,146,60,0.12);
  color: #C8923C;
}
.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.status-completed { color: #52c41a; background: rgba(82,196,26,0.15); }
.status-ongoing { color: #faad14; background: rgba(250,173,20,0.15); }
.status-operational { color: #1890ff; background: rgba(24,144,255,0.15); }

.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.project-detail-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #c994313a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.project-detail-image img {
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 380px;
}

.project-detail-content h3 {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 15px;
  margin-top: 0;
}

.project-detail-content p {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.project-details-list {
  background-color: rgba(200, 146, 60, 0.1);
  padding: 20px;
  border-left: 4px solid #C8923C;
  border-radius: 4px;
}

.detail-item {
  color: #000000;
  margin-bottom: 12px;
  font-size: 1rem;
}

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

.detail-item strong {
  color: #C8923C;
  font-weight: bold;
}

/* ========== QUICK NAVIGATION ========== */
.projects-quick-nav {
  background-color: #1e1e1e;
  padding: 16px 20px;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  position: sticky;
  top: 64px; /* below header */
  z-index: 100;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: top 0.3s ease;
}

.projects-quick-nav.hidden {
  top: 0px;
  border-top: none;
}

.projects-quick-nav .container {
  max-width: 1100px;
  margin: 0 auto;
}

.projects-quick-nav h3 {
  color: #C8923C;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-link {
  background-color: #000;
  color: #d6d6d6;
  padding: 10px 20px;
  border: 1px solid #C8923C;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-link:hover {
  background-color: #C8923C;
  color: #000;
}

.nav-link.active {
  background-color: #C8923C;
  color: #000;
}

/* Mobile dropdown select */
.nav-select {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background-color: #000;
  color: #d6d6d6;
  border: 1px solid #C8923C;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8923C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.nav-select:focus {
  outline: 2px solid #C8923C;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-select {
    display: block;
  }

  .project-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-detail-header {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }

  .project-detail-header h2 {
    font-size: 1rem;
    flex-basis: 100%;
  }

  .project-location {
    font-size: 0.9rem;
    white-space: normal;
  }

  .project-detail-content h3 {
    font-size: 1.4rem;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-link {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-image {
  margin-bottom: 30px;
}

.contact-image img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(200, 146, 60, 0.3));
}

.contact-title {
  font-size: 2.5rem;
  color: #C8923C;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #d6d6d6;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #C8923C;
  font-size: 1.1rem;
  pointer-events: none;
}

html[dir="rtl"] .input-icon {
  left: auto;
  right: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background-color: #1e1e1e;
  border: 2px solid #333;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

html[dir="rtl"] .contact-form input[type="text"],
html[dir="rtl"] .contact-form input[type="email"],
html[dir="rtl"] .contact-form input[type="tel"] {
  padding: 15px 45px 15px 15px;
}

.contact-form input:focus {
  outline: none;
  border-color: #C8923C;
  background-color: #252525;
}

.contact-form input::placeholder {
  color: #888;
}

.contact-form textarea {
  width: 100%;
  padding: 15px;
  background-color: #1e1e1e;
  border: 2px solid #333;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  min-height: 150px;
  resize: vertical;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
}

.contact-form textarea:focus {
  outline: none;
  border-color: #C8923C;
  background-color: #252525;
}

.contact-form textarea::placeholder {
  color: #888;
}

.contact-form .cta-button {
  padding: 15px 40px;
  background-color: #C8923C;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form .cta-button:hover {
  background-color: #d4a355;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 146, 60, 0.4);
}

.contact-form .cta-button:active {
  transform: translateY(0);
}

/* Footer */
.site-footer {
  background-color: #1e1e1e;
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-image img {
    max-width: 150px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form .cta-button {
    font-size: 1rem;
    padding: 12px 30px;
  }
}

/* ========== THANK YOU PAGE ========== */
.thank-you-section {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #1e1e1e;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon i {
  font-size: 5rem;
  color: #4CAF50;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-title {
  font-size: 3rem;
  color: #C8923C;
  margin-bottom: 20px;
  font-weight: 700;
}

.thank-you-message {
  font-size: 1.2rem;
  color: #d6d6d6;
  margin-bottom: 15px;
  line-height: 1.6;
}

.thank-you-info {
  font-size: 1rem;
  color: #999;
  margin-bottom: 40px;
  line-height: 1.6;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #C8923C;
  color: #000;
}

.btn-primary:hover {
  background-color: #d4a355;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 146, 60, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #C8923C;
  border: 2px solid #C8923C;
}

.btn-secondary:hover {
  background-color: #C8923C;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 146, 60, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .thank-you-container {
    padding: 40px 25px;
  }

  .success-icon i {
    font-size: 4rem;
  }

  .thank-you-title {
    font-size: 2.2rem;
  }

  .thank-you-message {
    font-size: 1.1rem;
  }

  .thank-you-info {
    font-size: 0.95rem;
  }

  .thank-you-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}