  :root {
    --primary: #162a8e;
    --primary-dark: #0d1a5c;
    --accent: #00e5ff;
    --text: #0f1419;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-elevated: #fafbfc;
    --border: #e5e7eb;
  }

  * {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .top--head-area,
  body>header {
    display: none !important;
  }

  .bold-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    font-family: 'Gilroy', -apple-system, sans-serif;
    background: var(--bg);
    transition: all 0.3s ease;
  }

  .bold-header.scrolled {
    box-shadow: 0 4px 30px rgba(15, 20, 25, 0.08);
  }

  .bold-topbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .bold-header.scrolled .bold-topbar {
    height: 0;
    overflow: hidden;
    border: none;
  }

  .bold-topbar-content {
    max-width: 1480px;
    margin: 0 auto;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bold-topbar-left,
  .bold-topbar-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .bold-topbar-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 4px 0;
  }

  .bold-topbar-link:hover {
    color: var(--accent);
    transform: translateY(-1px);
  }

  .bold-topbar-link i {
    font-size: 15px;
  }

  .bold-main {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
  }

  .bold-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    height: 76px;
    gap: 60px;
  }

  .bold-logo {
    display: flex;
    align-items: center;
  }

  .bold-logo img {
    height: 38px;
    width: auto;
    max-width: 200px;
    aspect-ratio: 152 / 38;
    object-fit: contain;
    vertical-align: middle;
    transition: transform 0.3s ease;
  }

  .bold-logo:hover img {
    transform: scale(1.03);
  }

  .bold-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bold-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .bold-nav-item {
    position: relative;
  }

  .bold-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
  }

  .bold-nav-link i {
    font-size: 17px;
    opacity: 0.65;
    transition: all 0.2s ease;
  }

  .bold-nav-link:hover {
    background: var(--bg-elevated);
    color: var(--primary);
  }

  .bold-nav-link:hover i {
    opacity: 1;
    transform: translateY(-1px);
  }

  .bold-mega {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    width: 780px;
    max-width: 96vw;
    background: var(--bg);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(15, 20, 25, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bold-nav-item:hover .bold-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }

  .bold-mega-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
  }

  .bold-mega-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .bold-mega-title i {
    font-size: 22px;
    color: var(--primary);
  }

  .bold-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .bold-mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 14px;
    text-decoration: none;
    background: var(--bg-elevated);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .bold-mega-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--item-color, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .bold-mega-item:hover::before {
    transform: scaleX(1);
  }

  .bold-mega-item:hover {
    background: var(--bg);
    border-color: var(--item-color, var(--primary));
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(22, 42, 142, 0.12);
  }

  .bold-mega-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--item-color, var(--primary));
    color: var(--bg);
    border-radius: 14px;
    font-size: 26px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 42, 142, 0.2);
  }

  .bold-mega-item:hover .bold-mega-icon {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 6px 20px rgba(22, 42, 142, 0.3);
  }

  .bold-mega-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
  }

  .bold-mega::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--bg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
  }

  .bold-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .bold-search {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    color: var(--text);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 19px;
  }

  .bold-search:hover {
    background: var(--primary);
    color: var(--bg);
    transform: rotate(90deg);
  }

  .bold-cta {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(22, 42, 142, 0.3);
    position: relative;
    overflow: hidden;
  }

  .bold-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
  }

  .bold-cta:hover::before {
    transform: scale(1);
  }

  .bold-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(22, 42, 142, 0.4);
  }

  .bold-cta i,
  .bold-cta span {
    position: relative;
    z-index: 1;
  }

  .bold-cta i {
    font-size: 17px;
  }

  .bold-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: var(--bg-elevated);
    border-radius: 10px;
  }

  .bold-mobile-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .bold-mobile-toggle:hover span {
    background: var(--primary);
  }

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9) translateY(10px);
    }

    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  .bold-mega-item {
    animation: fadeInScale 0.4s ease backwards;
  }

  .bold-mega-item:nth-child(1) {
    animation-delay: 0.05s;
  }

  .bold-mega-item:nth-child(2) {
    animation-delay: 0.08s;
  }

  .bold-mega-item:nth-child(3) {
    animation-delay: 0.11s;
  }

  .bold-mega-item:nth-child(4) {
    animation-delay: 0.14s;
  }

  .bold-mega-item:nth-child(5) {
    animation-delay: 0.17s;
  }

  .bold-mega-item:nth-child(6) {
    animation-delay: 0.2s;
  }

  .bold-mega-item:nth-child(7) {
    animation-delay: 0.23s;
  }

  .bold-mega-item:nth-child(8) {
    animation-delay: 0.26s;
  }

  .bold-mega-item:nth-child(9) {
    animation-delay: 0.29s;
  }

  /* ---------------------------------------------------- */
  /* OFFCANVAS BASE STYLES */
  /* ---------------------------------------------------- */

  /* Arka Plan Overlay */
  .offcanvas-overlay {
    display: none;
    /* Varsayılan olarak gizle */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Offcanvas Menü Ana Yapısı */
  .offcanvas-menu {
    display: none;
    /* Varsayılan olarak gizle */
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 90%;
    height: 100%;
    background: var(--bg);
    z-index: 10000;
    box-shadow: 4px 0 10px rgba(15, 20, 25, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
  }

  /* Offcanvas Header */
  .offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
  }

  .offcanvas-close-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
    border-radius: 8px;
    transition: color 0.2s;
  }

  .offcanvas-close-btn:hover {
    color: var(--primary);
  }

  /* Offcanvas Content */
  .offcanvas-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
  }

  /* OFFCANVAS İÇİ MENÜ STİLLERİ */
  .offcanvas-menu .content--navbar {
    width: 100%;
  }

  .offcanvas-menu .content--navbar ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .offcanvas-menu .content--navbar ul>li.nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .offcanvas-menu .content--navbar ul>li.nav-item:last-child {
    border-bottom: none;
  }

  .offcanvas-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .offcanvas-menu .nav-link:hover {
    background: var(--bg-elevated);
  }

  .offcanvas-menu .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    background: var(--primary);
    color: var(--bg);
    min-width: 30px;
  }

  .offcanvas-menu .nav-sub-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-elevated);
  }

  .offcanvas-menu .nav-item.open .nav-sub-content,
  .offcanvas-menu .nav-item.nav-active .nav-sub-content {
    max-height: 500px;
    display: block !important;
  }

  .offcanvas-menu .nav-sub-content ul {
    padding: 10px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
  }

  .offcanvas-menu .nav-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 35px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
  }

  .offcanvas-menu .nav-sub-link:hover {
    color: var(--primary);
    background: var(--bg);
  }

  .offcanvas-menu .nav-sub-link .icon {
    width: 24px;
    height: 24px;
    font-size: 12px;
    background: var(--item-color, var(--primary-dark));
    border-radius: 4px;
  }

  /* ======================================================= */
  /* MEDIA QUERY - MOBİL DÜZELTMELER */
  /* ======================================================= */

  @media (min-width: 1281px) {

    /* Masaüstünde Off-Canvas'ı ve Hamburger'i kesinlikle gizle */
    .bold-mobile-toggle {
      display: none !important;
    }

    .offcanvas-menu,
    .offcanvas-overlay {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      transform: translateX(-100%) !important;
    }
  }

  @media (max-width: 1280px) {
    .bold-nav {
      display: none !important;
    }

    .bold-mobile-toggle {
      display: flex !important;
    }

    .bold-container {
      padding: 0 30px;
    }

    .bold-topbar-content {
      padding: 10px 30px;
    }

    /* Eski mega menü stillerini mobil navigasyon açıldığında pasifize etme */
    .bold-mega {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
      transform: none !important;
    }

    .bold-nav-item:hover .bold-mega {
      opacity: 0 !important;
      visibility: hidden !important;
    }

    /* Off-Canvas Menüyü Mobil Görüntüde Gözükmeye Hazırla */
    .offcanvas-menu,
    .offcanvas-overlay {
      display: flex !important;
      /* veya block */
    }

    /* Offcanvas Açık Durumu (JS ile body'ye eklenir) */
    body.offcanvas-open .offcanvas-menu {
      transform: translateX(0) !important;
    }

    body.offcanvas-open .offcanvas-overlay {
      opacity: 1 !important;
      visibility: visible !important;
    }

    /* Menü açıkken body kaymasını engelle */
    body.offcanvas-open {
      overflow: hidden !important;
    }

    /* Gerekirse eski aktif menü sınıfını da gizle */
    .bold-nav.active {
      display: none !important;
    }
  }

  @media (max-width: 768px) {
    .bold-topbar {
      display: none;
    }

    .bold-container {
      height: 68px;
      padding: 0 20px;
      justify-content: space-between;
    }

    .bold-logo img {
      height: 34px;
    }

    .bold-cta {
      padding: 10px 20px;
      font-size: 13px;
    }

    .bold-search {
      width: 40px;
      height: 40px;
    }

    .bold-mega {
      max-width: 95vw;
      margin: 0 2.5vw;
      left: 0;
      right: 0;
      width: auto;
    }

    .bold-mega-grid {
      grid-template-columns: 1fr;
    }
  }

  a.bold-mega-item {
    display: flex !important;
    flex-direction: row;
    padding: 8px 14px;
    text-align: left;
  }

  .bold-mega-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 18px;
  }

  ul.xs-grid-auto {
    max-height: 400px;
    overflow-y: scroll;
  }

  .offcanvas-menu i {
    color: white !important;
  }

  #faq .d-grid.grid-2.md-grid-auto.gap-3.md-gap-0 {
    background: #fff !important;
    padding: 0px;
  }

  #faq .accordion .item .head {
    background: #0d1b60;
    color: white;
    border-radius: 12px;
  }

  .accordion .item .head::before {
    color: white !important;
    opacity: 1;
  }

  .accordion .item .body {
    background: #0d1b6030;
    color: #0d1b60;
    border-radius: 12px;
  }

  section#faq {
    padding-top: 60px;
  }

  #blog .us-data-bar {
    display: none;
  }

  section#blog {
    padding-bottom: 60px;
  }

  /* Blog tarih + okuma/yorum tek satır, aynı font, ikonlu */
  .blog-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .blog-meta-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .blog-meta-inline i {
    font-size: 1em;
    opacity: 0.9;
  }
  .blog--list .blog-item_detail.blog-meta-line .blog-meta-inline .time,
  .blog--list .blog-item_detail.blog-meta-line .blog-meta-inline i {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
  }
  .blog--list .blog-item_detail .blog-meta-inline .time::before {
    display: none;
  }
  .blog--list .blog-item_detail .blog-meta-inline .time {
    padding-left: 0;
  }
  .single--post_head .detail .blog-post_detail.blog-meta-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 15px;
    margin-bottom: 10px;
    background: var(--main-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
  .single--post_head .detail .blog-post_detail.blog-meta-line .time {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
  }
  .single--post_head .detail .blog-post_detail.blog-meta-line .time,
  .single--post_head .detail .blog-post_detail.blog-meta-line .blog-meta-inline {
    color: inherit;
  }
  .single--post_head .detail .blog-post_detail.blog-meta-line .blog-meta-inline i {
    color: rgba(255,255,255,0.95);
  }
  .detail-action.blog-meta-line .blog-meta-inline .date,
  .detail-action.blog-meta-line .blog-meta-inline i {
    font-size: inherit;
    font-weight: inherit;
  }

  .ns-reviews-container {
    margin: 0;
  }

  .article--area {
    background: #0e1b6030;
  }

  .footer--top {
    margin-bottom: 20px;
  }

  .main--intro .intro--image img {
    width: 580px;
    margin: 0 -90px -38px;
    max-width: unset;
  }

  @media (max-width: 500px) {
    .main--intro .intro--image img {
      height: 320px;
      object-fit: contain;
      width: 500px;
    }
  }

  a.butto.butto-popular-buy {
    background: #162a8e;
    color: white !important;
  }

  .service--pack_content {
    padding: 20px;
  }

  .service--pack_content .pack {
    background: #f7f7f7;
    box-shadow: 0 0 3px 0 #00000012;
  }

  .service--pack_content .pack .features {
    padding: 0;
  }

  .service--pack_content .pack .features ul li {
    height: 50px;
    background: #fff;
    border-bottom: 1px solid #ededed;
    padding-left: 10px;
  }

  .service--pack_content .pack .features ul {
    gap: 0;
  }

  .service--pack_content .pack .features ul li>.icon::before {
    border-radius: 50%;
    left: 0;
    display: block;
  }

  .service--pack_content .pack .features ul li:last-child {
    background: #11ad3430;
    color: white !important;
  }

  .service--pack_content .pack .features ul li:last-child span {
    color: #11ad34 !important;
    font-weight: bold;
  }


  .intro--head.ftx {
    justify-content: start !important;
  }
