/* ===================================================
   B&P CONSULTING-SARL — Brand Theme Override
   Bleu Marine: #003366 | Vert Logo: #2DB85A
   =================================================== */
:root {
  --accent-color: #2DB85A;
  --heading-color: #003366;
  --body-color: #555;
  --light-gray-color: #F5F5F5;
  --white-color: #fff;
  --black-color: #003366;
  --navy-color: #003366;
  --gold-color: #2DB85A;
  --gold-dark: #1f8c42;
  --green-color: #2DB85A;
}

/* === TYPOGRAPHY === */
body {
  font-family: 'Open Sans', 'Lato', Arial, sans-serif;
  font-size: 15px;
  color: var(--body-color);
}
h1, h2, h3, h4, h5, h6,
.cs_heading_color {
  font-family: 'Montserrat', 'Raleway', Arial, sans-serif;
  color: var(--heading-color);
}

/* === PRELOADER === */
.cs_preloader { background: var(--navy-color); }
.cs_preloader_in { background: var(--gold-color) !important; }
.cs_preloader_in svg { color: var(--navy-color) !important; }

/* === HEADER === */
.cs_site_header { background: #fff; box-shadow: 0 2px 20px rgba(0,51,102,0.1); }
.cs_site_branding img { height: 56px; width: auto; }
.cs_nav .cs_nav_list > li > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy-color);
  transition: color 0.25s;
}
.cs_nav .cs_nav_list > li > a:hover { color: var(--gold-color); }
.cs_nav .cs_nav_list > li.active > a { color: var(--gold-color); }

/* === DROPDOWN MENU — FIX COMPLET === */
/* Garantir que le nav ne coupe pas le dropdown */
#bpc-header .cs_main_header_in,
#bpc-header .cs_main_header_left,
#bpc-header .cs_nav,
#bpc-header .cs_nav_list,
#bpc-header .cs_nav_list > li {
  overflow: visible !important;
}

/* Reset et réécriture du dropdown */
#bpc-header .cs_nav_list > li > ul {
  display: block !important;
  position: absolute !important;
  top: calc(100% + 2px) !important;
  left: 0 !important;
  width: 265px !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  background: #003366 !important;
  border-top: 3px solid #2DB85A !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 12px 40px rgba(0,51,102,0.25) !important;
  z-index: 99999 !important;
  /* Suppression du transform 3D qui coupe les items */
  transform: translateY(-6px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease !important;
}

/* Dropdown visible au survol */
#bpc-header .cs_nav_list > li:hover > ul {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Items du dropdown */
#bpc-header .cs_nav_list > li > ul > li {
  display: block !important;
  width: 100% !important;
  overflow: visible !important;
}

/* Liens du dropdown */
#bpc-header .cs_nav_list > li > ul > li > a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 20px !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: 'Montserrat', Arial, sans-serif !important;
  text-decoration: none !important;
  transition: background 0.18s ease, color 0.18s ease !important;
  border-left: 3px solid transparent !important;
  line-height: 1.4 !important;
}
#bpc-header .cs_nav_list > li > ul > li > a i {
  color: #2DB85A !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}
#bpc-header .cs_nav_list > li > ul > li > a:hover {
  background: rgba(45,184,90,0.12) !important;
  color: #2DB85A !important;
  border-left-color: #2DB85A !important;
  padding-left: 24px !important;
}

/* === HERO SECTION === */
.bpc-hero {
  background: linear-gradient(135deg, #001f4d 0%, #003366 50%, #004080 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bpc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/img/hero_img_1.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.bpc-hero-content { position: relative; z-index: 2; }
.bpc-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; line-height: 1.2; font-weight: 800; }
.bpc-hero h1 span { color: var(--gold-color); }
.bpc-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.bpc-hero-badge {
  display: inline-block; background: var(--gold-color); color: var(--navy-color);
  font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px; margin-bottom: 20px;
}
.bpc-hero-shape {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 55%; opacity: 0.06;
}

/* === BUTTONS === */
.btn-bpc-primary {
  background: var(--gold-color); color: var(--navy-color);
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 14px;
  padding: 14px 32px; border-radius: 8px; border: 2px solid var(--gold-color);
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
  text-decoration: none; cursor: pointer;
}
.btn-bpc-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(45,184,90,0.4); }
.btn-bpc-outline {
  background: transparent; color: #fff;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 14px;
  padding: 14px 32px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.7);
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
  text-decoration: none;
}
.btn-bpc-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-bpc-navy {
  background: var(--navy-color); color: #fff;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 14px;
  padding: 14px 32px; border-radius: 8px; border: 2px solid var(--navy-color);
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
  text-decoration: none;
}
.btn-bpc-navy:hover { background: transparent; color: var(--navy-color); }

/* === SECTION TITLES === */
.bpc-section-label {
  display: inline-block; color: var(--gold-color); font-weight: 700;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.bpc-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--navy-color); line-height: 1.25; margin-bottom: 20px;
}
.bpc-section-title span { color: var(--gold-color); }
.bpc-divider {
  width: 60px; height: 4px; background: var(--gold-color); border-radius: 2px;
  margin: 0 0 30px 0;
}
.bpc-divider.center { margin: 0 auto 30px; }

/* === SERVICES SECTION === */
.bpc-services { background: var(--light-gray-color); padding: 90px 0; }
.bpc-service-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  box-shadow: 0 4px 30px rgba(0,51,102,0.06); transition: all 0.35s;
  height: 100%; border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.bpc-service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,51,102,0.12); border-top-color: var(--gold-color); }
.bpc-service-icon {
  width: 68px; height: 68px; border-radius: 16px;
  background: linear-gradient(135deg, #003366, #0055aa);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 28px; color: var(--gold-color);
}
.bpc-service-card h4 { font-size: 17px; font-weight: 700; color: var(--navy-color); margin-bottom: 12px; }
.bpc-service-card p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.bpc-service-card ul { list-style: none; padding: 0; margin: 0; }
.bpc-service-card ul li {
  font-size: 13px; color: #555; padding: 4px 0; border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: center; gap: 8px;
}
.bpc-service-card ul li::before { content: '✓'; color: var(--gold-color); font-weight: 700; }
.bpc-service-link { color: var(--gold-color); font-weight: 700; font-size: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; }
.bpc-service-link:hover { color: var(--navy-color); }

/* === STATS / CHIFFRES CLÉS === */
.bpc-stats { background: linear-gradient(135deg, #003366 0%, #001f4d 100%); padding: 80px 0; }
.bpc-stat-item { text-align: center; padding: 20px; }
.bpc-stat-number { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: var(--gold-color); line-height: 1; }
.bpc-stat-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 8px; font-weight: 500; }
.bpc-stat-item .bpc-stat-icon { font-size: 32px; color: rgba(45,184,90,0.4); margin-bottom: 12px; }

/* === ABOUT STRIP === */
.bpc-about-strip { padding: 90px 0; }
.bpc-about-img-wrapper { position: relative; }
.bpc-about-img-wrapper img { border-radius: 20px; width: 100%; object-fit: cover; }
.bpc-about-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--navy-color); color: #fff;
  padding: 20px 24px; border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,51,102,0.3);
  text-align: center;
}
.bpc-about-badge .big { font-size: 2rem; font-weight: 800; color: var(--gold-color); display: block; }
.bpc-about-badge .label { font-size: 12px; color: rgba(255,255,255,0.8); }
.bpc-check-list { list-style: none; padding: 0; }
.bpc-check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 15px; color: #444; }
.bpc-check-list li .icon { color: var(--gold-color); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* === PROCESS STEPS === */
.bpc-process { background: #f8f9fc; padding: 90px 0; }
.bpc-process-step { text-align: center; padding: 30px 20px; }
.bpc-step-number {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy-color); color: var(--gold-color);
  font-size: 22px; font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.bpc-process-step h5 { font-size: 16px; font-weight: 700; color: var(--navy-color); margin-bottom: 10px; }
.bpc-process-step p { font-size: 14px; color: #666; line-height: 1.7; }
.bpc-process-connector { border-top: 2px dashed var(--gold-color); position: absolute; top: 30px; left: 50%; right: -50%; z-index: 0; }

/* === TEAM CARDS === */
.bpc-team-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,51,102,0.07);
  transition: transform 0.3s;
}
.bpc-team-card:hover { transform: translateY(-6px); }
.bpc-team-card img { width: 100%; height: 240px; object-fit: cover; }
.bpc-team-info { padding: 20px; background: #fff; }
.bpc-team-info h5 { font-size: 16px; font-weight: 700; color: var(--navy-color); margin-bottom: 4px; }
.bpc-team-info span { font-size: 13px; color: var(--gold-color); font-weight: 600; }

/* === TESTIMONIALS === */
.bpc-testimonials { background: var(--navy-color); padding: 90px 0; }
.bpc-testimonial-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 36px 30px; height: 100%;
}
.bpc-testimonial-card .quote { font-size: 48px; color: var(--gold-color); line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.bpc-testimonial-card p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.bpc-testimonial-card .author { display: flex; align-items: center; gap: 16px; }
.bpc-testimonial-card .author img { width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--gold-color); }
.bpc-testimonial-card .author-name { font-weight: 700; color: #fff; font-size: 15px; }
.bpc-testimonial-card .author-role { font-size: 12px; color: var(--gold-color); }
.bpc-stars { color: var(--gold-color); font-size: 14px; margin-bottom: 16px; }

/* === BLOG CARDS === */
.bpc-blog-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,51,102,0.06);
  transition: transform 0.3s, box-shadow 0.3s; background: #fff;
}
.bpc-blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,51,102,0.12); }
.bpc-blog-card img { width: 100%; height: 220px; object-fit: cover; }
.bpc-blog-body { padding: 24px; }
.bpc-blog-cat {
  display: inline-block; background: rgba(45,184,90,0.15); color: var(--gold-color);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.bpc-blog-card h5 { font-size: 17px; font-weight: 700; color: var(--navy-color); line-height: 1.4; margin-bottom: 12px; }
.bpc-blog-card h5 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.bpc-blog-card h5 a:hover { color: var(--gold-color); }
.bpc-blog-meta { font-size: 12px; color: #999; display: flex; gap: 16px; align-items: center; }
.bpc-blog-meta i { color: var(--gold-color); margin-right: 4px; }
.bpc-read-more { color: var(--gold-color); font-weight: 700; font-size: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; }
.bpc-read-more:hover { color: var(--navy-color); }

/* === CTA BAND === */
.bpc-cta { background: linear-gradient(135deg, var(--gold-color) 0%, #1f8c42 100%); padding: 80px 0; }
.bpc-cta h2 { color: var(--navy-color); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
.bpc-cta p { color: rgba(0,51,102,0.85); font-size: 16px; }

/* === CONTACT PAGE === */
.bpc-contact-info-card {
  background: var(--navy-color); border-radius: 20px; padding: 40px 36px; color: #fff; height: 100%;
}
.bpc-contact-info-card h3 { color: var(--gold-color); font-size: 22px; font-weight: 700; margin-bottom: 30px; }
.bpc-contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.bpc-contact-icon { width: 44px; height: 44px; background: rgba(45,184,90,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold-color); flex-shrink: 0; font-size: 18px; }
.bpc-contact-text strong { display: block; color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.bpc-contact-text span, .bpc-contact-text a { font-size: 14px; color: rgba(255,255,255,0.75); text-decoration: none; }
.bpc-contact-text a:hover { color: var(--gold-color); }
.bpc-social-links { display: flex; gap: 10px; margin-top: 30px; }
.bpc-social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.bpc-social-links a:hover { background: var(--gold-color); color: var(--navy-color); }

/* === FORMS === */
.bpc-form-card { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 8px 40px rgba(0,51,102,0.08); }
.bpc-form-card h3 { color: var(--navy-color); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.bpc-form-group { margin-bottom: 20px; }
.bpc-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-color); margin-bottom: 6px; }
.bpc-form-group input,
.bpc-form-group select,
.bpc-form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid #e8ecf0; border-radius: 10px;
  font-size: 14px; color: #333; background: #fafbfc;
  transition: border-color 0.25s, box-shadow 0.25s; outline: none;
  font-family: 'Open Sans', Arial, sans-serif;
}
.bpc-form-group input:focus,
.bpc-form-group select:focus,
.bpc-form-group textarea:focus {
  border-color: var(--gold-color);
  box-shadow: 0 0 0 4px rgba(45,184,90,0.12);
  background: #fff;
}
.bpc-form-group textarea { resize: vertical; min-height: 130px; }
.bpc-form-submit {
  background: var(--navy-color); color: #fff;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 36px; border-radius: 10px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.25s, transform 0.2s; width: 100%;
  justify-content: center;
}
.bpc-form-submit:hover { background: var(--gold-color); color: var(--navy-color); transform: translateY(-2px); }
.bpc-alert-success { background: rgba(45,184,90,0.1); border: 1px solid #2DB85A; color: #1a7a3c; padding: 14px 20px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.bpc-alert-error { background: rgba(220,53,69,0.1); border: 1px solid #dc3545; color: #721c24; padding: 14px 20px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }

/* === PAGE HEADER === */
.bpc-page-header {
  background: linear-gradient(135deg, #001f4d 0%, #003366 70%, #004488 100%);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.bpc-page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/img/page_header_1.jpg') center/cover;
  opacity: 0.08;
}
.bpc-page-header .inner { position: relative; z-index: 2; }
.bpc-page-header h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
.bpc-page-header .breadcrumb-bpc { display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.bpc-page-header .breadcrumb-bpc a { color: var(--gold-color); font-size: 14px; text-decoration: none; }
.bpc-page-header .breadcrumb-bpc span { color: rgba(255,255,255,0.6); font-size: 14px; }

/* === BLOG DETAIL === */
.bpc-blog-detail { padding: 80px 0; }
.bpc-blog-detail img.feature { width: 100%; border-radius: 16px; margin-bottom: 30px; max-height: 450px; object-fit: cover; }
.bpc-blog-detail .meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.bpc-blog-detail .meta span { font-size: 13px; color: #777; display: flex; align-items: center; gap: 6px; }
.bpc-blog-detail .meta i { color: var(--gold-color); }
.bpc-blog-detail h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy-color); font-weight: 800; margin-bottom: 24px; }
.bpc-blog-detail .content { font-size: 16px; line-height: 1.9; color: #444; }
.bpc-blog-detail .content h2, .bpc-blog-detail .content h3 { color: var(--navy-color); margin: 30px 0 16px; }
.bpc-blog-sidebar { padding-left: 30px; }
.bpc-sidebar-widget { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,51,102,0.06); margin-bottom: 28px; }
.bpc-sidebar-widget h4 { font-size: 16px; font-weight: 700; color: var(--navy-color); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold-color); }

/* === ABOUT PAGE === */
.bpc-values { background: #f8f9fc; padding: 90px 0; }
.bpc-value-card { text-align: center; padding: 40px 24px; background: #fff; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,51,102,0.05); transition: transform 0.3s; height: 100%; }
.bpc-value-card:hover { transform: translateY(-6px); }
.bpc-value-icon { width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 22px; background: linear-gradient(135deg, #003366, #0055aa); display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--gold-color); }
.bpc-value-card h5 { font-size: 17px; font-weight: 700; color: var(--navy-color); margin-bottom: 12px; }
.bpc-value-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* === FOOTER === */
.bpc-footer { background: linear-gradient(180deg, #001f4d 0%, #001133 100%); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.bpc-footer-brand img { height: 54px; width: auto; margin-bottom: 18px; filter: brightness(10); }
.bpc-footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; }
.bpc-footer h5 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--gold-color); }
.bpc-footer-links { list-style: none; padding: 0; }
.bpc-footer-links li { margin-bottom: 10px; }
.bpc-footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.bpc-footer-links a:hover { color: var(--gold-color); }
.bpc-footer-links a i { font-size: 11px; color: var(--gold-color); }
.bpc-footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,0.7); }
.bpc-footer-contact li i { color: var(--gold-color); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.bpc-footer-bottom { background: rgba(0,0,0,0.3); padding: 18px 0; margin-top: 50px; }
.bpc-footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.bpc-footer-bottom a { color: var(--gold-color); text-decoration: none; }
.bpc-footer-social { display: flex; gap: 10px; }
.bpc-footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all 0.2s; }
.bpc-footer-social a:hover { background: var(--gold-color); color: var(--navy-color); }
.bpc-newsletter-form { display: flex; gap: 8px; }
.bpc-newsletter-form input { flex: 1; padding: 11px 16px; border-radius: 8px; border: 2px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.07); color: #fff; font-size: 14px; outline: none; }
.bpc-newsletter-form input:focus { border-color: var(--gold-color); }
.bpc-newsletter-form button { padding: 11px 20px; border-radius: 8px; background: var(--gold-color); color: var(--navy-color); border: none; font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.bpc-newsletter-form button:hover { background: var(--gold-dark); }

/* === SCROLL TO TOP === */
.cs_scrolltop_btn { background: var(--navy-color) !important; color: var(--gold-color) !important; }
.cs_scrolltop_btn:hover { background: var(--gold-color) !important; color: var(--navy-color) !important; }

/* === UTILITIES === */
.text-gold { color: var(--gold-color) !important; }
.text-navy { color: var(--navy-color) !important; }
.bg-navy { background: var(--navy-color) !important; }
.bg-gold { background: var(--gold-color) !important; }
.bg-light-bpc { background: #f8f9fc !important; }

/* === PAGINATION === */
.bpc-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.bpc-pagination a, .bpc-pagination span {
  width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-weight: 600; font-size: 14px;
  text-decoration: none; transition: all 0.25s;
}
.bpc-pagination a { background: #fff; color: var(--navy-color); border: 2px solid #e0e0e0; }
.bpc-pagination a:hover, .bpc-pagination span.active { background: var(--navy-color); color: #fff; border-color: var(--navy-color); }

/* === MAP === */
.bpc-map-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,51,102,0.12); }
.bpc-map-wrapper iframe { width: 100%; height: 400px; border: 0; display: block; }

/* === ALERT FLASH === */
.alert-success { background: rgba(45,184,90,0.1); border: 1px solid #2DB85A; color: #155724; border-radius: 10px; padding: 14px 20px; }
.alert-danger { background: rgba(220,53,69,0.1); border: 1px solid #dc3545; color: #721c24; border-radius: 10px; padding: 14px 20px; }

/* === SERVICE CARD IMAGE HOVER === */
.bpc-service-card:hover .bpc-card-img { transform: scale(1.06); }

/* === PROCESS STEP IMAGE === */
.bpc-process-step img { transition: transform 0.4s ease; }
.bpc-process-step:hover img { transform: scale(1.05); }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .bpc-hero { min-height: 70vh; padding: 100px 0 60px; }
  .bpc-blog-sidebar { padding-left: 0; margin-top: 30px; }
  .bpc-about-badge { left: 10px; }
}
@media (max-width: 767px) {
  .bpc-hero { min-height: auto; padding: 80px 0 50px; }
  .bpc-stats .bpc-stat-item { padding: 12px; }
  .bpc-cta { text-align: center; }
  .bpc-newsletter-form { flex-direction: column; }
}
