/* ==========================================================================
   BURMAKSER — site-wide design system overrides
   Loads after style.css. All colors, spacing, typography unified here.
   ========================================================================== */

:root {
  --bm-primary:        #0a66c2;
  --bm-primary-dark:   #064e96;
  --bm-primary-light:  #2e8aef;
  --bm-accent:         #ff9a3c;
  --bm-header-bg:      #0e1f3a;
  --bm-header-bg-2:    #122a55;
  --bm-text:           #1f2937;
  --bm-text-muted:     #6b7280;
  --bm-bg:             #ffffff;
  --bm-bg-alt:         #f6f9fd;
  --bm-border:         #e2e8f0;
  --bm-radius:         10px;
  --bm-shadow:         0 8px 24px rgba(14, 31, 58, 0.08);
  --bm-shadow-hover:   0 14px 40px rgba(14, 31, 58, 0.14);
}

/* AOS guard: if AOS isn't initialized, never leave content invisible. */
[data-aos] { opacity: 1 !important; transform: none !important; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, Arial, sans-serif;
  color: var(--bm-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--bm-primary); text-decoration: none; }
a:hover { color: var(--bm-primary-dark); }

/* ===== Header ============================================================ */
#header {
  background: linear-gradient(180deg, var(--bm-header-bg) 0%, var(--bm-header-bg-2) 100%) !important;
  height: 76px !important;
  padding: 0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: none;
  display: flex !important;
  align-items: center !important;
}
#header .container {
  height: 76px !important;
  display: flex !important;
  align-items: center !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Force the logo + nav to be perfectly centered vertically */
#header h1.logo,
#header h1.logo a,
#navbar,
#navbar > ul {
  display: flex !important;
  align-items: center !important;
  height: 76px;
}
#header h1.logo {
  margin: 0 auto 0 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
#header h1.logo a {
  height: auto !important;
  line-height: 1 !important;
}

#header .logo a,
#header h1.logo a {
  color: #ffffff !important;
  font-family: 'Poppins','Open Sans',sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header h1.logo { font-size: inherit; margin: 0; padding: 0; line-height: 1; }
#header h1.logo a, #header h1.logo a:hover { text-decoration: none; }

/* Nav links — white, clean hover underline */
#navbar > ul {
  display: flex !important;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navbar ul ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navbar > ul > li {
  position: relative;
}
#navbar > ul > li > a,
#navbar > ul > li > a:link,
#navbar > ul > li > a:visited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ffffff !important;
  font-family: 'Poppins','Open Sans',sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  white-space: nowrap;
  transition: color .15s ease;
  background: transparent !important;
  border-radius: 0;
  text-decoration: none;
}
#navbar > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--bm-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
#navbar > ul > li > a:hover,
#navbar > ul > li > a.active {
  color: #ffffff !important;
}
#navbar > ul > li > a:hover::after,
#navbar > ul > li > a.active::after { transform: scaleX(1); }

#navbar > ul > li .bi-chevron-down {
  font-size: 12px;
  margin-left: 4px;
  opacity: 0.85;
}

/* Iletisim CTA in header */
#navbar .getstarted,
#navbar a.getstarted {
  background: var(--bm-accent) !important;
  color: #fff !important;
  padding: 9px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-left: 16px;
  font-size: 14px;
  letter-spacing: .3px;
  box-shadow: 0 4px 12px rgba(255,154,60,.35);
}
#navbar .getstarted:hover { background: #e8862e !important; }
#navbar .getstarted::after { display: none; }

/* Dropdown */
#navbar .dropdown { position: relative; }
#navbar .dropdown ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  padding: 8px 0;
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(14,31,58,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s linear .15s;
  z-index: 1000;
}
#navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
#navbar .dropdown ul li { display: block; list-style: none; }
#navbar .dropdown ul li a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 18px !important;
  color: var(--bm-text) !important;
  font-size: 14px !important;
  font-weight: 500;
  background: transparent !important;
  white-space: nowrap;
}
#navbar .dropdown ul li a::after { display: none; }
#navbar .dropdown ul li a:hover {
  background: var(--bm-bg-alt) !important;
  color: var(--bm-primary) !important;
}
/* Nested dropdown */
#navbar .dropdown .dropdown > ul {
  top: -8px;
  left: 100%;
  margin-left: 4px;
}
#navbar .dropdown .dropdown > a .bi-chevron-right {
  font-size: 11px;
  opacity: .65;
}

.mobile-nav-toggle { color: #fff !important; }

/* ===== Breadcrumbs ======================================================= */
.breadcrumbs {
  padding: 24px 0 18px;
  background: var(--bm-bg-alt);
  border-bottom: 1px solid var(--bm-border);
  margin-top: 76px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0e1f3a;
  margin: 10px 0 0;
  font-family: 'Poppins','Open Sans',sans-serif;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: var(--bm-text-muted);
}
.breadcrumbs ol li + li::before {
  content: "›";
  margin: 0 8px;
  color: #b3becd;
}
.breadcrumbs ol li a { color: var(--bm-primary); }

/* ===== Section titles ==================================================== */
.section-title {
  text-align: center;
  margin-bottom: 32px;
}
.section-title h2 {
  font-family: 'Poppins','Open Sans',sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0e1f3a;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--bm-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}
.section-title p {
  color: var(--bm-text-muted);
  font-size: 15px;
  margin: 0;
}

/* ===== Buttons =========================================================== */
.btn,
.btn-primary,
a.btn-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: 'Poppins','Open Sans',sans-serif;
  letter-spacing: .3px;
  border-radius: 50px !important;
  border: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.4;
}
.btn-primary,
a.btn-primary,
.btn.btn-primary {
  background: var(--bm-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(10,102,194,.25);
}
.btn-primary:hover,
a.btn-primary:hover {
  background: var(--bm-primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(10,102,194,.35);
}
.btn-accent {
  background: var(--bm-accent) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(255,154,60,.35);
}
.btn-accent:hover {
  background: #e8862e !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.cta-btn, .cta a.cta-btn {
  display: inline-flex !important;
  background: var(--bm-accent) !important;
  color: #fff !important;
  padding: 12px 32px !important;
  border-radius: 50px !important;
  font-weight: 600;
  border: 0 !important;
  align-items: center;
}
.cta-btn:hover { background: #e8862e !important; }

/* ===== Product card grid ================================================= */
.product-grid { padding: 50px 0; }
.product-grid .card {
  border: 1px solid var(--bm-border) !important;
  border-radius: var(--bm-radius) !important;
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.product-grid .card:hover {
  transform: translateY(-4px);
  border-color: #cdd9ea;
  box-shadow: var(--bm-shadow-hover);
}
.product-grid .card .img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,#fafbff 0%,#f1f5fb 100%);
  padding: 16px;
}
.product-grid .card .img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.product-grid .card .card-body {
  padding: 18px 18px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-grid .card .card-title,
.product-grid .card h5 {
  font-family: 'Poppins','Open Sans',sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0e1f3a;
  line-height: 1.4;
  min-height: 48px;
  margin: 0 0 14px;
}
.product-grid .card .btn-primary {
  align-self: center;
  margin-top: auto;
}
.brand-cards .card .img-wrap { height: 150px; padding: 24px; }
.brand-cards .card h5 { font-size: 17px; min-height: 0; }

/* ===== Product detail page =============================================== */
.product-detail { padding: 50px 0 70px; }
.product-detail .hero {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-detail .hero { grid-template-columns: 1fr; gap: 24px; }
}
.product-detail .hero .image-box {
  background: linear-gradient(180deg,#fafbff 0%,#eef3fb 100%);
  border: 1px solid var(--bm-border);
  border-radius: 14px;
  padding: 28px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail .hero .image-box img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}
.product-detail .badge-brand {
  display: inline-block;
  background: var(--bm-primary);
  color: #fff;
  padding: 5px 14px;
  font-size: 11px;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-detail h1.product-title {
  font-family: 'Poppins','Open Sans',sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0e1f3a;
  line-height: 1.25;
  margin: 0 0 14px;
}
.product-detail .lead {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
}
.product-detail h2.section-h {
  font-family: 'Poppins','Open Sans',sans-serif;
  font-size: 21px;
  color: #0e1f3a;
  font-weight: 700;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bm-primary);
  display: inline-block;
}
.product-detail .feature-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.product-detail .feature-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #374151;
  line-height: 1.55;
  border-bottom: 1px solid #f1f5fb;
}
.product-detail .feature-list li:last-child { border-bottom: 0; }
.product-detail .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 9px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(10,102,194,.12);
  color: var(--bm-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
}
.product-detail table.spec-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  overflow: hidden;
}
.product-detail table.spec-table th,
.product-detail table.spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--bm-border);
  vertical-align: top;
}
.product-detail table.spec-table th {
  background: var(--bm-bg-alt);
  color: #0e1f3a;
  font-weight: 600;
  text-align: left;
  width: 42%;
}
.product-detail table.spec-table tr:last-child th,
.product-detail table.spec-table tr:last-child td { border-bottom: 0; }

/* ===== Solutions ========================================================= */
.solutions-section { padding: 50px 0 70px; }
.solutions-section h3 {
  color: var(--bm-primary);
  font-weight: 700;
  font-size: 22px;
  font-family: 'Poppins','Open Sans',sans-serif;
  margin: 18px 0 12px;
}
.solutions-section ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}
.solutions-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #374151;
}
.solutions-section ul li::before {
  content: "›";
  position: absolute;
  left: 8px; top: 6px;
  color: var(--bm-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

/* ===== References ======================================================== */
.ref-grid .ref-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 18px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 160px;
}
.ref-grid .ref-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bm-shadow-hover);
}
.ref-grid .ref-card img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 12px;
}
.ref-grid .ref-card .name {
  font-size: 12px;
  color: #0e1f3a;
  font-weight: 600;
  line-height: 1.3;
}

/* ===== Footer ============================================================ */
#footer {
  background: #0e1f3a !important;
  color: #d6deec !important;
  padding: 0;
  margin-top: 60px;
}
#footer .footer-top {
  padding: 60px 0 40px;
  background: #0e1f3a !important;
}
#footer h3 {
  font-family: 'Poppins','Open Sans',sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
#footer h4 {
  font-family: 'Poppins','Open Sans',sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: .8px;
}
#footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--bm-accent);
}
#footer p, #footer li, #footer a { color: #d6deec; font-size: 14px; line-height: 1.8; }
#footer a:hover { color: #fff; }
#footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
#footer .footer-links ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
#footer .footer-links ul li i { color: var(--bm-accent); font-size: 14px; }
#footer .footer-contact p strong { color: #fff; font-weight: 600; }
#footer .footer-bottom {
  padding: 20px 0;
  background: #0a1830;
  font-size: 13px;
  color: #93a4c2;
  border-top: 1px solid #19305a;
  /* The HTML uses `class="container footer-bottom"`; override container's
     max-width so the dark bar spans the entire viewport. */
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}
#footer .footer-bottom .copyright {
  text-align: center !important;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 16px;
  float: none !important;
  width: 100%;
  display: block;
}

/* ===== Clients strip ==================================================== */
#cliens.cliens {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid var(--bm-border);
}
#cliens .row { align-items: center; }
#cliens img {
  max-height: 70px;
  max-width: 80%;
  object-fit: contain;
  opacity: .85;
  filter: none;
  transition: opacity .15s ease, transform .15s ease;
}
#cliens a:hover img { opacity: 1; transform: scale(1.04); }

/* ===== About / CTA / FAQ / Contact ====================================== */
.about { padding: 60px 0; }
.about .section-title { text-align: left; }
.about .section-title h2 { font-size: 26px; }
.about .section-title h2::after { left: 0; transform: none; }
.about p { color: #374151; font-size: 15px; line-height: 1.85; }
.about ul { list-style: none; padding: 0; margin: 14px 0 0; }
.about ul li { padding: 6px 0 6px 28px; position: relative; color: #374151; }
.about ul li i {
  position: absolute; left: 0; top: 8px;
  color: var(--bm-primary); font-size: 16px;
}

.cta {
  background: linear-gradient(135deg, #0e1f3a 0%, #0a66c2 100%) !important;
  padding: 50px 0;
  color: #fff;
  margin: 50px 0 0;
}
.cta h3 { color: #fff; font-weight: 700; font-family: 'Poppins',sans-serif; }
.cta p { color: rgba(255,255,255,.85); margin: 8px 0 0; }
.cta .cta-btn-container { display: flex; align-items: center; justify-content: center; }

.faq { padding: 60px 0; background: var(--bm-bg-alt); }
.faq-list ul { list-style: none; padding: 0; }
.faq-list li {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 16px 20px;
}
.faq-list li > a { color: #0e1f3a; font-weight: 600; display: block; }
.faq-list li .collapse p { color: #4a5568; margin: 10px 0 0; }

.contact { padding: 60px 0; }
.contact .info {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: 10px;
  padding: 28px;
}
.contact .info i {
  font-size: 22px;
  color: var(--bm-primary);
  background: rgba(10,102,194,.1);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 8px;
}
.contact .info h4 { font-size: 16px; font-weight: 600; color: #0e1f3a; margin: 8px 0 4px; }
.contact .info p { color: #4a5568; margin: 0 0 18px; }
.contact iframe { border-radius: 10px; margin-top: 18px; }

/* ===== Hero (existing carousel) ========================================= */
#hero { margin-top: 76px; padding: 0; }
#hero .owl-carousel img { width: 100%; height: auto; max-height: 540px; object-fit: cover; }

.back-to-top {
  background: var(--bm-primary) !important;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff !important;
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 100;
}

/* ===== Mobile (≤ 991px) ================================================== */
@media (max-width: 991px) {
  #header { height: 64px; }
  #header .container { height: 64px; }
  #header h1.logo a { font-size: 22px; }
  .mobile-nav-toggle { display: inline-block !important; color: #fff !important; font-size: 26px; cursor: pointer; margin-left: auto; }
  #navbar { position: static; }
  #navbar > ul {
    display: none !important;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bm-header-bg);
    flex-direction: column;
    padding: 12px 0;
  }
  body.mobile-nav-active #navbar > ul { display: flex !important; }
  #navbar > ul > li { width: 100%; }
  #navbar > ul > li > a { width: 100%; padding: 12px 24px; }
  #navbar .dropdown ul {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0;
    background: rgba(255,255,255,.06);
    margin: 4px 12px;
  }
  #navbar .dropdown ul li a { color: #fff !important; }
  #navbar .dropdown ul li a:hover { background: rgba(255,255,255,.1) !important; color: #fff !important; }
  .product-detail .hero { grid-template-columns: 1fr; }
  .breadcrumbs { margin-top: 64px; }
}

/* ===== WhatsApp Floating CTA (bottom-right) =============================== */
.bm-wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 18px;
  background: linear-gradient(180deg, #0e1f3a 0%, #122a55 100%);
  color: #b9d6ff !important;
  font-family: 'Poppins','Open Sans',sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  text-decoration: none !important;
  border: 1px solid #1d3a6d;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.bm-wa-fab:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0,0,0,.32);
  text-decoration: none !important;
}
.bm-wa-fab .bm-wa-text { line-height: 1; }
.bm-wa-fab .bm-wa-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(37, 211, 102, .35);
  flex-shrink: 0;
}
.bm-wa-fab .bm-wa-icon svg { display: block; }

/* Move the existing back-to-top above the new WA button on the same edge */
.back-to-top {
  bottom: 78px !important;
}

/* Mobile: icon-only floating bubble, no text */
@media (max-width: 640px) {
  .bm-wa-fab {
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
    background: #25d366;
    border-color: #1fb955;
  }
  .bm-wa-fab .bm-wa-text { display: none; }
  .bm-wa-fab .bm-wa-icon {
    background: transparent;
    box-shadow: none;
    width: 32px;
    height: 32px;
  }
  .back-to-top { bottom: 90px !important; }
}
