/* ==========================================================================
   Buzachi Neft — Custom Styles
   Loaded after skin-1.css to override template defaults
   Palette: White #FFFFFF | Black #000000 | Accent #004DC1
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap&subset=cyrillic');

/* ==========================================================================
   1. GLOBAL / TYPOGRAPHY
   ========================================================================== */

html, body {
  height: 100%;
}

body,
.page-wraper {
  font-family: 'Manrope', sans-serif;
}

.page-wraper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.be-footer {
  margin-top: auto;
}

h1, h2, h3, h4, h5, h6,
.wt-title,
.section-head h2 {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.02em;
  color: #000;
}

h1 { font-size: 56px; font-weight: 700; line-height: 1.1; }
h2 { font-size: 42px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 32px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 24px; font-weight: 600; line-height: 1.4; }
h5 { font-size: 20px; font-weight: 500; }
h6 { font-size: 16px; font-weight: 500; }

p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

a {
  transition: color 0.3s ease;
}

/* ==========================================================================
   2. HIDE TEMPLATE DECORATIONS
   ========================================================================== */

/* Hide top bar */
.top-bar {
  display: none !important;
}

/* Hide leaf separators */
.wt-small-separator,
.wt-separator-outer {
  display: none !important;
}

/* Replace drill-bit gif loader with CSS spinner */
.loading-pic img {
  display: none !important;
}

.loading-pic::after {
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #004DC1;
  border-radius: 50%;
  animation: be-spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes be-spin {
  to { transform: rotate(360deg); }
}

/* Hide Revolution Slider related elements */
.rev_slider_wrapper,
.rev_slider,
#rev_slider_one_wrapper {
  display: none !important;
}

/* ==========================================================================
   3. HEADER OVERRIDES
   ========================================================================== */

.main-bar {
  background: #fff;
}

.header-style-2 .logo-header {
  width: auto;
  max-width: 280px;
  margin-right: 40px;
}

.header-style-2 .logo-header .logo-header-inner img {
  height: 60px;
  width: auto;
  max-width: none;
}

.header-style-2 .header-nav .nav > li > a {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #222;
  padding: 10px 18px;
}

.header-style-2 .header-nav .nav > li > a:hover,
.header-style-2 .header-nav .nav > li.active > a {
  color: #fff;
  background: #004DC1;
}

.is-fixed .main-bar {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Hide submenu arrows for flat nav */
.header-nav .nav > li.has-child > a::after {
  display: none;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.be-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.be-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.be-hero .container {
  position: relative;
  z-index: 2;
}

.be-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.be-hero h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.be-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.be-btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.be-btn-primary {
  background: #004DC1;
  color: #fff;
  border: 2px solid #004DC1;
}

.be-btn-primary:hover {
  background: #003a94;
  border-color: #003a94;
  color: #fff;
  text-decoration: none;
}

.be-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.be-btn-outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  text-decoration: none;
}

.be-btn-outline-dark {
  background: transparent;
  color: #004DC1;
  border: 2px solid #004DC1;
}

.be-btn-outline-dark:hover {
  background: #004DC1;
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   6. SECTION UTILITIES
   ========================================================================== */

.be-section {
  padding: 100px 0;
}

.be-section-sm {
  padding: 60px 0;
}

.be-section-sm:last-of-type {
  padding-bottom: 0;
}

.be-section-lg {
  padding: 140px 0;
}

.be-section-gray {
  background-color: #f8f9fa;
}

/* Section Labels */
.be-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #004DC1;
  margin-bottom: 16px;
}

/* Section centered header */
.be-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.be-section-header h2 {
  margin-bottom: 20px;
}

.be-section-header p {
  font-size: 18px;
}

/* ==========================================================================
   7. CARDS
   ========================================================================== */

.be-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

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

.be-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.be-card-body {
  padding: 28px;
}

.be-card-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.be-card-body p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.border-top-blue {
  border-top: 3px solid #004DC1;
}

/* Card link */
.be-card-link {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #004DC1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.be-card-link:hover {
  color: #003a94;
  text-decoration: none;
}

.be-card-link::after {
  content: ' \2192';
}

/* ==========================================================================
   8. STATISTICS BAR
   ========================================================================== */

.be-stats {
  background: #000;
  padding: 80px 0;
}

.be-stats .counter {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.be-stat-suffix {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.be-stat-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

.be-stat-item {
  text-align: center;
}

/* ==========================================================================
   9. INNER PAGE HEADER
   ========================================================================== */

.be-page-header {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.be-page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Blurred background for news article pages */
.be-page-header--blur {
  background-image: none !important;
}

.be-page-header--blur .be-page-header__bg {
  position: absolute;
  top: -30px; left: -30px; right: -30px; bottom: -30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(16px);
  z-index: 0;
}

.be-page-header--blur::before {
  z-index: 2;
}

.be-page-header--blur .container {
  z-index: 3;
}

.be-page-header .container {
  position: relative;
  z-index: 2;
}

.be-page-header h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 16px;
}

.be-page-header .be-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.be-page-header .be-breadcrumb li {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.be-page-header .be-breadcrumb li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.be-page-header .be-breadcrumb li a:hover {
  color: #fff;
}

.be-page-header .be-breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   10. FOOTER (DARK)
   ========================================================================== */

.be-footer {
  background: #111;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.be-footer h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.be-footer p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
}

.be-footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

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

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

.be-footer-links li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.be-footer-links li a:hover {
  color: #fff;
}

.be-footer-social {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  gap: 12px;
}

.be-footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.be-footer-social li a:hover {
  background: #004DC1;
}

.be-footer-contact p {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.be-footer-contact a,
.be-footer-contact a[href^="tel"] {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
}

.be-footer-contact p i {
  color: #004DC1;
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
}

.be-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.be-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Language Switcher */
.be-lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
}

.be-lang-switch a {
  display: inline-block;
  padding: 4px 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.be-lang-switch a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.be-lang-switch a.active {
  color: #fff;
  background: #004DC1;
  border-color: #004DC1;
}

/* ==========================================================================
   11. CHECKLIST
   ========================================================================== */

.be-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.be-checklist li {
  padding: 8px 0;
  font-size: 16px;
  color: #333;
  padding-left: 28px;
  position: relative;
}

.be-checklist li i {
  color: #004DC1;
  position: absolute;
  left: 0;
  top: 10px;
}

/* ==========================================================================
   12. TIMELINE (About page)
   ========================================================================== */

.be-timeline {
  position: relative;
  padding: 20px 0;
}

.be-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
  transform: translateX(-50%);
}

.be-timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
}

.be-timeline-item:nth-child(odd) {
  flex-direction: row;
}

.be-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.be-timeline-content {
  width: 45%;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.be-timeline-item:nth-child(odd) .be-timeline-content {
  margin-right: auto;
  text-align: right;
}

.be-timeline-item:nth-child(even) .be-timeline-content {
  margin-left: auto;
  text-align: left;
}

.be-timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 16px;
  height: 16px;
  background: #004DC1;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #004DC1;
}

.be-timeline-year {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #004DC1;
  margin-bottom: 8px;
}

.be-timeline-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.be-timeline-content p {
  font-size: 14px;
  margin: 0;
}

/* ==========================================================================
   13. CONTACT FORM
   ========================================================================== */

.be-form .form-control {
  font-family: 'Manrope', sans-serif;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.be-form .form-control:focus {
  border-color: #004DC1;
  box-shadow: 0 0 0 3px rgba(0,77,193,0.1);
}

.be-form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

/* Contact info block */
.be-form-msg {
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 15px;
}
.be-form-msg--success { background: #d4edda; color: #155724; }
.be-form-msg--error { background: #f8d7da; color: #721c24; }

.be-contact-info {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.be-contact-info i {
  font-size: 20px;
  color: #004DC1;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.be-contact-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.be-contact-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ==========================================================================
   14. NEWS CARDS
   ========================================================================== */

.be-all-news-btn { margin-top: 40px; }

.be-news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.be-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.be-news-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.be-news-card-body {
  padding: 28px;
}

.be-news-date {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.be-news-card-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.be-news-card-body h3 a {
  color: #000;
  text-decoration: none;
}

.be-news-card-body h3 a:hover {
  color: #004DC1;
}

/* ==========================================================================
   15. CERTIFICATIONS
   ========================================================================== */

.be-cert-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.be-cert-card i {
  font-size: 48px;
  color: #004DC1;
  margin-bottom: 20px;
  display: block;
}

.be-cert-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.be-cert-card p {
  font-size: 14px;
  color: #666;
}

/* ==========================================================================
   16. GOOGLE MAP
   ========================================================================== */

.be-map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

.be-map-full {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ==========================================================================
   17. UTILITY CLASSES
   ========================================================================== */

.bg-gray-light {
  background-color: #f8f9fa;
}

.text-center { text-align: center; }

.mb-0 { margin-bottom: 0; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }

.img-rounded {
  border-radius: 8px;
}

/* Image cover for sections */
.be-img-cover {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 26px; }
  /* Breadcrumbs: show only parent back-link on mobile */
  .be-page-header .be-breadcrumb li { display: none; }
  .be-page-header .be-breadcrumb li + li::before { display: none; }
  .be-page-header .be-breadcrumb li:nth-last-child(2) { display: block; }
  .be-page-header .be-breadcrumb { gap: 0; }
  .be-page-header .be-breadcrumb li:nth-last-child(2) a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
  }
  .be-page-header .be-breadcrumb li:nth-last-child(2) a::before {
    content: '\2190\00a0';
  }

  .be-hero {
    height: 70vh;
    min-height: 500px;
  }

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

  .be-hero p {
    font-size: 17px;
  }

  .be-section {
    padding: 70px 0;
  }

  .be-section-lg {
    padding: 100px 0;
  }

  .be-page-header {
    height: 280px;
  }

  .be-page-header h1 {
    font-size: 36px;
  }

  .be-stats .counter,
  .be-stat-suffix {
    font-size: 36px;
  }

  .be-timeline::before {
    left: 20px;
  }

  .be-timeline-item,
  .be-timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .be-timeline-content,
  .be-timeline-item:nth-child(odd) .be-timeline-content,
  .be-timeline-item:nth-child(even) .be-timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px;
    margin-right: 0;
    text-align: left;
  }

  .be-timeline-dot {
    left: 20px;
  }

  .be-sust-heading { order: 1; }
  .be-sust-img { order: 2; margin-top: 15px; margin-bottom: 5px; }
  .be-sust-text { order: 3; }
  .be-sust-text .be-btn { display: block; text-align: center; }

  .be-card { margin-bottom: 24px; height: auto; }

  .be-ops-img { order: -1; }
  .col-lg-6.mb-30 { margin-bottom: 10px !important; }

  .be-contact-form { margin-bottom: 40px; }

  .be-all-news-btn { margin-top: 10px; }

  .be-who-heading { order: 1; text-align: center; }
  .be-who-img { order: 2; margin-top: 20px; margin-bottom: 5px !important; }
  .be-who-body { order: 3; text-align: center; }

  .be-footer-bottom .container { flex-direction: column-reverse; gap: 12px; text-align: center; }

  /* Burger → cross: no animation */
  .header-style-2.mobile-sider-drawer-menu .icon-bar {
    transition: none !important;
  }

  /* Mobile nav links: simple tap style */
  .header-style-2 .header-nav .nav > li > a {
    transition: none !important;
  }
  .header-style-2 .header-nav .nav > li > a::after {
    display: none !important;
  }
  .header-style-2 .header-nav .nav > li > a:hover,
  .header-style-2 .header-nav .nav > li > a:active,
  .header-style-2 .header-nav .nav > li > a:focus {
    color: #004DC1 !important;
    background: transparent !important;
  }
  .header-style-2 .header-nav .nav > li.active > a {
    color: #fff !important;
    background: #004DC1 !important;
  }

  /* Menu slide from left */
  .header-style-2.mobile-sider-drawer-menu .header-nav {
    width: 280px !important;
    left: -280px !important;
    padding-left: 15px !important;
    transition: left 0.2s linear !important;
  }
  .header-style-2.mobile-sider-drawer-menu.active .header-nav {
    left: 0 !important;
  }

  .be-footer h4 {
    margin-top: 32px;
    margin-bottom: 12px;
  }
}

@media (min-width: 992px) {
  .be-sust-text { order: -1; }
}

@media (max-width: 767px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .be-hero {
    height: 60vh;
    min-height: 400px;
  }

  .be-hero h1 {
    font-size: 32px;
  }

  .be-hero p {
    font-size: 16px;
  }

  .be-section {
    padding: 50px 0;
  }

  .be-stats {
    padding: 50px 0;
  }

  .be-stat-item {
    margin-bottom: 30px;
  }

  .be-stats .counter,
  .be-stat-suffix {
    font-size: 32px;
  }

  .be-page-header {
    height: 220px;
  }

  .be-page-header h1 {
    font-size: 28px;
  }

  .be-footer {
    padding: 50px 0 0;
  }

  .be-img-cover {
    min-height: 280px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .be-hero h1 {
    font-size: 28px;
  }

  .be-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ==========================================================================
   19. SINGLE NEWS ARTICLE
   ========================================================================== */

.be-news-single {
  max-width: 800px;
  margin: 0 auto;
}

.be-news-single img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
}

.be-news-single .be-news-date {
  margin-bottom: 16px;
}

.be-news-single h1 {
  margin-bottom: 24px;
  font-size: 36px;
}

.be-news-single-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.be-news-single-content p {
  margin-bottom: 16px;
}

.be-news-back {
  display: inline-block;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .be-news-single h1 {
    font-size: 26px;
  }
}
