* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-color: #4BC8ED;
  --blue-color: #2b3990;
  --dark-blue: #1a237e;
  --light-bg: #f8f9fa;
  --topbar-blue: #4BC8ED;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a{
  text-decoration: none;
  color: inherit;
}
/* ============================================================
   HEADER — Matches your screenshot design
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--topbar-blue);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 0;
  color: #ffffff;
  font-size: 14px;
}

.top-bar__discount {
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
}

.top-bar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 16px;
}

.top-bar__phone,
.top-bar__address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}

.top-bar__phone svg,
.top-bar__address svg {
  opacity: 0.9;
}

.top-bar__cta {
  background: #ffffff;
  color: #1a1a1a;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.top-bar__cta:hover {
  background: #4ac8ed;
  color: #ffffff;
}

/* ── Main Header ── */
.main-header {
  background: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 55px;
  width: auto;
}

/* ── Navigation ── */
.main-nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.main-nav__menu > li {
  position: relative;
}

.main-nav__menu > li > a {
  display: block;
  padding: 10px 10px;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.main-nav__menu > li > a:hover {
  color: var(--topbar-blue);
}

.main-nav__menu > li.active > a {
  color: var(--topbar-blue);
  border-bottom: 2px solid var(--topbar-blue);
}

/* Dropdown arrow */
.arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
  border-radius: 4px;
  margin-top: 4px;
  padding: 8px 0;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 8px 20px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.dropdown li a:hover {
  color: var(--topbar-blue);
  background: #f8f9fa;
}

/* ── Mobile Menu Toggle ── */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .top-bar__left {
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-bar__divider {
    display: none;
  }

  .top-bar__address {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 110px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 110px);
    background: #ffffff;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .main-nav.nav-open {
    left: 0;
  }

  .main-nav__menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .main-nav__menu > li {
    width: 100%;
  }

  .main-nav__menu > li > a {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    min-width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .has-dropdown.active .dropdown {
    display: block;
  }

  .dropdown li a {
    padding-left: 20px;
    border-bottom: 1px solid #f0f0f0;
  }
}

@media (max-width: 768px) {
  .site-logo img {
    height: 45px;
  }

  .top-bar__discount {
    font-size: 12px;
  }

  .top-bar__phone {
    font-size: 12px;
  }

  .top-bar__cta {
    padding: 6px 16px;
    font-size: 12px;
  }
}

/* ============================================================
   FOOTER — Matches your screenshot design
   ============================================================ */

.site-footer {
  background: #0f1f33;
  color: #ffffff;
}

/* ── Main Footer ── */
.footer-main {
  padding: 50px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ── Columns ── */
.footer-col {
  color: #ffffff;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0 0 20px;
}

/* ── About Column ── */
.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 60px;
  width: auto;    
  margin-left: -45px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: #4BC8ED;
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: #000000;
}

/* ── Links Columns ── */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--topbar-blue);
}

/* ── Contact Column ── */
.footer-contact .contact-block {
  margin-bottom: 16px;
}

.footer-contact .contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px;
}

.footer-contact .contact-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom__inner p {
  margin: 0;
}

.footer-credit {
  color: var(--topbar-blue);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--topbar-blue);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.4);
}

/* ── Container ── */
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/* Scroll to Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--green-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--blue-color);
  transform: translateY(-5px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .fb-widget-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .footer-heading {
    font-size: 18px;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

/* Breadcrumb Section */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap-2 {
  min-height: 300px;
  display: flex;
  align-items: center;
  /* padding: 60px 0 40px; */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  width: 100%;
}

.hero-content {
  width: 100%;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
  text-align: center;
}

.breadcrumbs a:hover {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--green-color);
}

.breadcrumbs .separator {
  font-size: 14px;
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs span {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-right: 8px;
}

.page-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}
