/* ============================================
   AZGAD RÉSEAUX - Complete Stylesheet
   Rebuilt from scratch - Pixel-perfect copy
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  background: #f5f5f5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ff6600; text-decoration: none; transition: color 0.3s; }
a:hover { color: #003366; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* Body offset for fixed header on non-home pages */
body:not(.home) { padding-top: 75px; }
body:not(.home) #top-bar { display: none; }

/* ---------- UTILITIES ---------- */
.text-right { text-align: right; }
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.centered { text-align: center; }

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.section-title.centered { text-align: center; }
.section-title.light { color: #ffffff; }

/* ---------- DIVIDERS ---------- */
.divider {
  width: 80px;
  height: 3px;
  background: #ff6600;
  margin: 15px 0 25px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn i { margin-left: 8px; }
.btn-primary {
  background: linear-gradient(135deg, #ff6600, #e55a00);
  color: #ffffff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #003366, #004488);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

/* ============================================
   TOP BAR
   ============================================ */
#top-bar {
  background: #2a2a2a;
  color: #ffffff;
  font-size: 14px;
  padding: 4px 0;
  text-align: center;
}
.topbar-content { color: #ff6600; }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 51, 102, 0.95);
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  padding: 5px 0;
}
#site-header.scrolled {
  background: rgba(0, 51, 102, 1);
  padding: 2px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img {
  height: 60px;
  width: auto;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-menu > li > a {
  display: block;
  padding: 20px 18px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.main-menu > li > a:hover,
.main-menu > li.current > a {
  color: #ff6600;
}
.main-menu > li > a i.fa-angle-down { margin-left: 4px; font-size: 11px; }

/* Dropdown */
.has-submenu { position: relative; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #003366;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.has-submenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sub-menu li a:hover { color: #ff6600; background: rgba(255, 255, 255, 0.05); }

.search-toggle-btn { color: #ffffff !important; }
.search-toggle-btn:hover { color: #ff6600 !important; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #003366;
  z-index: 999;
  padding: 80px 30px 30px;
  overflow-y: auto;
}
#mobile-nav.open { display: block; }
#mobile-nav ul { }
#mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#mobile-nav .sub-menu { padding-left: 20px; }
#mobile-nav .sub-menu li a { font-size: 14px; color: rgba(255, 255, 255, 0.8); }

/* ============================================
   SECTION 1: HERO
   ============================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: kenBurns 20s ease infinite;
}
.hero-slideshow .slide.active { opacity: 1; }
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.65);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 30px;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 300;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.hero-content .divider {
  margin: 15px auto 25px;
}
.hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}
.hero-content .btn {
  margin-top: 30px;
}

/* ============================================
   SECTION 2: SERVICES FLIP BOXES
   ============================================ */
.section-services {
  padding: 80px 0;
  background: #f5f5f5;
}
.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.flip-card {
  perspective: 1000px;
  height: 320px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-inner { transform: rotateY(180deg); }

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}
.flip-front {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
}
.flip-front-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.65);
}
.flip-front-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}
.flip-front-content i {
  font-size: 48px;
  color: #ff6600;
  margin-bottom: 15px;
  display: block;
}
.flip-front-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.flip-back {
  background: rgba(0, 51, 102, 0.94);
  color: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
}
.flip-back h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.flip-back p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
.flip-link {
  color: #ff6600;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff6600;
  padding-bottom: 3px;
}
.flip-link:hover { color: #ffffff; border-color: #ffffff; }

/* ============================================
   SECTION 3: EXPERTISE
   ============================================ */
.section-expertise {
  padding: 80px 0;
  background: #ffffff;
}
.two-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.two-cols.align-center { align-items: center; }
.col-left, .col-right {
  flex: 1;
  min-width: 300px;
}
.col-left img { border-radius: 8px; width: 100%; }
.section-expertise p {
  color: #555;
  margin-bottom: 15px;
}
.section-expertise .btn { margin-top: 10px; }

/* ============================================
   SECTION 4: TRANSFORMER
   ============================================ */
.section-transformer {
  padding: 80px 0;
  background: #003366;
  color: #ffffff;
}
.col-text-35 {
  flex: 0 0 35%;
  min-width: 280px;
}
.col-images-65 {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.section-transformer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}
.section-transformer strong { color: #ffffff; }

/* Before / After widget */
.ba-widget {
  flex: 1;
  min-width: 250px;
  border: 3px solid #ff6600;
  border-radius: 8px;
  overflow: hidden;
}
.ba-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  cursor: ew-resize;
}
.ba-after, .ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ba-after img, .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #ff6600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  z-index: 5;
  cursor: ew-resize;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  background: rgba(0, 51, 102, 0.9);
}
.ba-labels span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ff6600;
  text-transform: uppercase;
}

/* ============================================
   SECTION 5: BÂTISSONS + CAROUSEL
   ============================================ */
.section-batissons {
  padding: 80px 0;
  background: #f5f5f5;
}
.col-left-50 {
  flex: 0 0 48%;
  min-width: 280px;
}
.col-right-50 {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
}
.section-batissons p {
  color: #555;
  margin-bottom: 20px;
}
.carousel-track {
  display: flex;
  gap: 15px;
  animation: scrollCarousel 30s linear infinite;
}
.carousel-slide {
  flex: 0 0 auto;
  width: 200px;
}
.carousel-slide img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
}
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION 6: BANNER CTA
   ============================================ */
.section-banner {
  padding: 50px 0;
  background: linear-gradient(135deg, #003366, #004488);
  text-align: center;
}
.section-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
}

/* ============================================
   SECTION 7: GALLERY
   ============================================ */
.section-gallery {
  padding: 80px 0;
  background: #ffffff;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.gallery-item {
  width: 350px;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 51, 102, 0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.gallery-item:hover {
  box-shadow: 0 0 35px rgba(0, 51, 102, 0.6);
  transform: scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SECTION 8: CONTACT
   ============================================ */
.section-contact {
  padding: 80px 0;
  background: #f5f5f5;
  position: relative;
}
.section-contact p {
  color: #555;
  margin-bottom: 10px;
}
.contact-boxes {
  margin: 30px 0;
  border-left: 3px solid #ff6600;
}
.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  border-bottom: 1px solid #ddd;
}
.contact-box:last-child { border-bottom: none; }
.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ff6600;
}
.contact-info strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
}
.contact-info a {
  font-size: 15px;
  color: #555;
}
.section-contact .btn { margin-top: 10px; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: #ffffff;
  border-top: 1px solid #eee;
  padding: 25px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-left a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}
.footer-right {
  font-size: 13px;
  color: #666;
}
.footer-right a { color: #ff6600; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #ff6600;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: #003366; }

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/MG_8525-2048x1341.jpg') center/cover no-repeat;
  margin-top: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.75);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}
.page-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6600;
  margin-bottom: 10px;
}
.page-hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}

/* ============================================
   SERVICE DETAIL (Subpages)
   ============================================ */
.service-detail {
  padding: 60px 0;
  background: #ffffff;
}
.service-detail-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}
.service-detail-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.service-detail-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  margin: 20px 0 15px;
}
.service-detail-header .divider {
  margin: 15px auto 25px;
}
.lead-quote {
  font-size: 16px;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  border-left: 3px solid #ff6600;
  padding-left: 20px;
}
.service-two-col {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}
.service-col-text {
  flex: 1;
  min-width: 300px;
}
.service-col-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 15px;
}
.service-col-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}
.service-col-img {
  flex: 0 0 40%;
  min-width: 280px;
}
.service-col-img img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.service-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.service-intro p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.section-why-choose {
  padding: 60px 0;
  background: #f5f5f5;
}
.section-why-choose h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}
.section-why-choose .divider {
  margin: 15px auto 30px;
}
.why-choose-list {
  max-width: 800px;
  margin: 0 auto 30px;
}
.why-choose-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  border-bottom: 1px solid #e5e5e5;
}
.why-choose-list li:last-child { border-bottom: none; }
.why-choose-list li i {
  color: #ff6600;
  margin-right: 10px;
}
.why-choose-list li strong {
  color: #333;
}
.btn-row-center {
  text-align: center;
  margin: 30px 0 20px;
}
.contact-box-mini {
  background: #003366;
  border-radius: 10px;
  padding: 35px 30px;
  max-width: 400px;
  margin: 30px auto 0;
  text-align: center;
}
.contact-box-mini h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 15px;
}
.contact-box-mini p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.contact-box-mini p a {
  color: #ffffff;
}
.contact-box-mini p a:hover {
  color: #ff6600;
}
.contact-box-mini i {
  color: #ff6600;
  margin-right: 8px;
}

/* ============================================
   CLOSING SECTION (Services index)
   ============================================ */
.section-closing {
  background: #f5f5f5;
}
.expertise-row {
  display: flex;
  gap: 40px;
  align-items: center;
}
.expertise-row .col-text {
  flex: 1;
  min-width: 300px;
}
.expertise-row .col-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.expertise-row .col-text .divider {
  margin: 15px 0 20px;
}
.expertise-row .col-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}
.expertise-row .col-img {
  flex: 0 0 45%;
  min-width: 280px;
}
.expertise-row .col-img img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   VALUES SECTION (Entreprise)
   ============================================ */
.section-values {
  padding: 60px 0;
  background: #f5f5f5;
}
.section-values h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}
.section-values .divider {
  margin: 15px auto 40px;
}
.values-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.value-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ff6600;
  border: 2px solid #ff6600;
  border-radius: 50%;
}
.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ============================================
   EXPERTISE SECTION (Entreprise)
   ============================================ */
.section-expertise-sub {
  padding: 60px 0;
  background: #ffffff;
}
.expertise-two-col {
  display: flex;
  gap: 40px;
  align-items: center;
}
.expertise-two-col .col-img {
  flex: 0 0 45%;
  min-width: 280px;
}
.expertise-two-col .col-img img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.expertise-two-col .col-text {
  flex: 1;
  min-width: 300px;
}
.expertise-two-col .col-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.expertise-two-col .col-text .divider {
  margin: 15px 0 20px;
}
.expertise-two-col .col-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 60px 0;
  background: url('../images/MG_8529-2048x1451.jpg') center/cover no-repeat;
  text-align: center;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.8);
}
.cta-banner .container {
  position: relative;
  z-index: 2;
}
.cta-banner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

/* ============================================
   GALLERY SECTION (Subpages)
   ============================================ */
.section-gallery-sub {
  padding: 60px 0;
  background: #f5f5f5;
}
.section-gallery-sub h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}
.section-gallery-sub .divider {
  margin: 15px auto 30px;
}
.gallery-grid-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.gallery-grid-small .gallery-item {
  width: 220px;
  height: 220px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.section-contact-page {
  padding: 60px 0;
  background: #ffffff;
}
.contact-page-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.contact-page-info {
  flex: 0 0 35%;
  min-width: 280px;
}
.contact-page-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-page-info .divider {
  margin: 15px 0 25px;
}
.contact-info-block {
  margin-top: 10px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i {
  font-size: 22px;
  color: #ff6600;
  margin-top: 3px;
}
.contact-info-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
  margin-bottom: 3px;
}
.contact-info-item a {
  font-size: 15px;
  color: #555;
}
.contact-page-form {
  flex: 1;
  min-width: 300px;
}
.contact-page-form h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #1a1a2e;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-page-form .divider {
  margin: 15px 0 25px;
}
.contact-intro {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6600;
  outline: none;
  background: #ffffff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.char-counter {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
  display: block;
}
.contact-form button[type="submit"] {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #ff6600, #e55a00);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #003366, #004488);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-content {
  background: #f5f5f5;
}
.privacy-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.privacy-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 15px;
}
.privacy-section p {
  color: #555;
  margin-bottom: 12px;
  line-height: 1.8;
}
.privacy-section ul {
  margin: 10px 0 15px 20px;
  list-style: disc;
}
.privacy-section ul li {
  color: #555;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #003366;
  color: #ffffff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.cookie-banner a {
  color: #ff6600;
}
.cookie-btn {
  padding: 8px 25px;
  background: #ff6600;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.cookie-btn:hover { background: #e55a00; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .flip-grid { grid-template-columns: repeat(2, 1fr); }
  .col-text-35 { flex: 0 0 100%; }
  .col-images-65 { flex: 0 0 100%; }
}

@media (max-width: 768px) {
  #site-nav { display: none; }
  .mobile-toggle { display: block; }
  .section-title { font-size: 28px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 14px; }
  .flip-grid { grid-template-columns: 1fr; }
  .two-cols { flex-direction: column; }
  .col-left-50, .col-right-50 { flex: 0 0 100%; }
  .gallery-item { width: calc(50% - 10px); height: auto; }
  .gallery-item img { height: auto; }
  .footer-inner { flex-direction: column; text-align: center; }
  .section-banner h2 { font-size: 18px; }
  .page-hero { height: 250px; }
  .page-hero-content h1 { font-size: 30px; }
  .service-two-col { flex-direction: column; }
  .service-col-img { flex: 0 0 100%; }
  .contact-page-row { flex-direction: column; }
  .contact-page-info { flex: 0 0 100%; }
  .expertise-row { flex-direction: column; }
  .expertise-two-col { flex-direction: column; }
  .values-row { flex-direction: column; align-items: center; }
  .cookie-banner { flex-direction: column; text-align: center; gap: 10px; }
  .service-detail-header h2, .section-why-choose h2,
  .section-values h2, .section-gallery-sub h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .gallery-item { width: 100%; }
}
