/* LCN ana menü, içerik sayfaları ve footer ek stilleri */

.top-left,
.footer-bottom,
.header-flex {
    display: flex;
    align-items: center;
}

.top-left { gap: 22px; }
.top-contact { color: #fff; font-weight: 700; }
.top-contact:hover { color: #ffc107; }

.header-flex { min-height: 190px; gap: 28px; }
.logo { flex: 0 0 auto; }
.mega-menu { margin-left: auto; }
.mega-menu > ul { gap: 27px; }
.mega-menu .dropdown > a::after { content: " ▾"; font-size: 11px; }
.mega-menu .dropdown ul { padding: 7px 0; }
.mega-menu .dropdown ul a { padding: 11px 18px; }

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.content-lead {
    font-size: 20px;
    color: #334155;
    max-width: 950px;
}

.content-section {
    margin-top: 34px;
    padding-top: 5px;
    scroll-margin-top: 24px;
}

.content-section h2 { margin-top: 18px; }
.content-section ul { margin: 8px 0 22px 24px; }
.content-section li { margin-bottom: 9px; font-size: 17px; }

.lcn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.lcn-card,
.contact-panel,
.info-band {
    background: #f7f9fc;
    border: 1px solid #dce5f2;
    border-radius: 12px;
    padding: 25px;
}

.lcn-card { border-top: 5px solid #173d7d; }
.lcn-card h2,
.lcn-card h3 { margin: 0 0 12px; font-size: 24px; }
.lcn-card p:last-child { margin-bottom: 0; }

.quick-links,
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 18px;
}

.quick-links a,
.tag-list span {
    display: inline-block;
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 15px;
    font-weight: 700;
}

.quick-links a { color: #fff; background: #173d7d; }
.quick-links a:hover { background: #ffc107; color: #111; }
.tag-list span { color: #173d7d; background: #e8f0ff; }

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin: 25px 0;
    counter-reset: lcn-step;
}

.process-step {
    counter-increment: lcn-step;
    background: #0d234b;
    color: #fff;
    border-radius: 11px;
    padding: 20px;
}

.process-step::before {
    content: counter(lcn-step);
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 11px;
    border-radius: 50%;
    background: #ffc107;
    color: #111;
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    margin-top: 25px;
}

.contact-panel h2,
.contact-panel h3 { margin-top: 0; }
.contact-panel a { color: #0d56b3; font-weight: 700; overflow-wrap: anywhere; }

.cta-band {
    margin-top: 34px;
    padding: 28px;
    background: linear-gradient(135deg,#0d234b,#255ab5);
    color: #fff;
    border-radius: 12px;
}

.cta-band h2 { color: #fff; margin: 0 0 10px; }
.cta-band p { margin-bottom: 17px; }
.cta-band a {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 7px;
    background: #ffc107;
    color: #111;
    font-weight: 800;
}

.footer-grid { display: grid !important; grid-template-columns: 1.6fr 1fr 1fr 1fr !important; }
.footer-brand h2 { margin-bottom: 15px; color: #fff; }
.footer-col h3 { font-size: 21px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0 0 10px; }
.footer-col a:hover { color: #ffc107; }
.footer-bottom { justify-content: space-between; gap: 20px; }
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 10000;
    padding: 13px 19px;
    border-radius: 999px;
    color: #fff;
    background: #118442;
    box-shadow: 0 8px 25px rgba(0,0,0,.22);
    font-weight: 800;
}

@media (max-width: 1180px) {
    .header-flex { gap: 18px; }
    .mega-menu > ul { gap: 17px; }
    .mega-menu li a { font-size: 14px; }
    .offer-button { padding: 13px 17px; }
}

@media (max-width: 1000px) {
    .topbar-flex { align-items: stretch; }
    .top-left { justify-content: center; flex-wrap: wrap; gap: 8px 18px; }
    .header-flex {
        min-height: auto;
        padding: 17px 0;
        flex-direction: row;
        flex-wrap: wrap;
        text-align: left;
    }
    .logo-title { font-size: 36px; }
    .logo-sub { font-size: 11px; }
    .mobile-menu-button { display: flex; margin-left: auto; }
    .mega-menu { display: none; order: 4; width: 100%; margin: 4px 0 0; }
    .mega-menu.is-open { display: block; }
    .mega-menu > ul { display: block; background: #081a3a; border-radius: 10px; padding: 8px 17px; }
    .mega-menu > ul > li { border-bottom: 1px solid rgba(255,255,255,.12); }
    .mega-menu > ul > li:last-child { border-bottom: 0; }
    .mega-menu li a { padding: 11px 0; }
    .mega-menu .dropdown ul {
        position: static;
        display: block;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        padding: 0 0 9px 14px;
    }
    .mega-menu .dropdown ul a { color: #dce9ff; border: 0; padding: 7px 0; font-weight: 500; }
    .mega-menu .dropdown ul a:hover { background: transparent; color: #ffc107; }
    .offer-button { order: 3; display: inline-block; padding: 11px 15px; }
    .content h1 { font-size: 35px; line-height: 1.2; }
    .content h2 { font-size: 27px; }
    .lcn-grid, .contact-grid { grid-template-columns: 1fr; }
    .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; text-align: left !important; }
}

@media (max-width: 620px) {
    .container, .main-wrapper { max-width: 92%; }
    .topbar { font-size: 12px; }
    .top-left { display: grid; gap: 3px; }
    .top-right { margin-top: 5px; }
    .header-flex { gap: 10px; }
    .offer-button { width: 100%; text-align: center; }
    .content { padding: 22px 18px; }
    .content h1 { font-size: 30px; }
    .content-lead, .content p { font-size: 17px; }
    .process-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr !important; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .floating-whatsapp { right: 12px; bottom: 12px; }
}
/* LCN-TAM-SOL-MENU-BAS */
.main-wrapper { align-items: stretch !important; }
.sidebar { align-self: stretch; min-height: calc(100vh - 70px); height: auto; }
.sidebar .cat-title { width: 100%; min-height: 74px; border: 0; border-radius: 0; background: #fff; color: #10264d; font: inherit; font-size: 16px; font-weight: 800; text-align: left; }
.sidebar .cat-title > span:first-child { display: flex; align-items: center; gap: 9px; min-width: 0; }
.sidebar .cat-title-button { cursor: pointer; }
.sidebar .cat-title-button:focus-visible, .sidebar .sidebar-direct-link:focus-visible { outline: 3px solid #ffc107; outline-offset: -3px; }
.sidebar .menu-folder { flex: 0 0 auto; font-size: 18px; }
.sidebar .menu-plus, .sidebar .menu-arrow { flex: 0 0 auto; margin-left: 10px; font-size: 21px; font-weight: 900; transition: transform .2s ease; }
.sidebar .menu-category.open .menu-plus { transform: rotate(45deg); }
.sidebar .cat-items { display: none; background: #f8fafc; }
.sidebar .menu-category.open .cat-items { display: block; }
.sidebar .menu-item a { display: block; padding: 12px 18px 12px 38px; border-top: 1px solid #e6ebf2; color: #334155; font-size: 14px; line-height: 1.4; }
.sidebar .menu-item a:hover, .sidebar .menu-item a:focus { padding-left: 44px; background: #173d7d; color: #fff; }
.sidebar .menu-all a { background: #e8f0ff; color: #173d7d; font-weight: 800; }
.sidebar .sidebar-direct-link { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; text-decoration: none; }
.sidebar .sidebar-direct-link:hover, .sidebar .sidebar-direct-link.is-current { background: #ffc107; color: #10264d; }
.sidebar .sidebar-direct-link:hover .menu-arrow { transform: translateX(4px); }
.hub-intro { margin-bottom: 26px; padding: 25px; border: 1px solid #dce5f2; border-left: 6px solid #ffc107; border-radius: 12px; background: #f7f9fc; }
.hub-intro h2 { margin: 0 0 10px; }
.hub-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.hub-card { scroll-margin-top: 24px; padding: 23px; border: 1px solid #dce5f2; border-top: 5px solid #173d7d; border-radius: 12px; background: #fff; box-shadow: 0 5px 18px rgba(13,35,75,.06); }
.hub-card h2 { margin: 0 0 10px; font-size: 24px; }
.hub-card p { margin: 0 0 12px; }
.hub-card p:last-child { margin-bottom: 0; }
.hub-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.hub-actions a { padding: 10px 13px; border-radius: 7px; background: #173d7d; color: #fff; font-weight: 800; }
.hub-note { margin-top: 25px; padding: 20px; border-radius: 10px; background: #fff6d7; border-left: 5px solid #f0b400; }
.hub-cta { margin-top: 30px; padding: 27px; border-radius: 12px; background: linear-gradient(135deg,#0d234b,#255ab5); color: #fff; }
.hub-cta h2 { margin: 0 0 9px; color: #fff; }
.hub-cta a { display: inline-block; margin-top: 7px; padding: 12px 18px; border-radius: 8px; background: #ffc107; color: #111; font-weight: 800; }
.faq-intro-card { padding: 26px; margin-bottom: 30px; border: 1px solid #dce5f2; border-left: 6px solid #ffc107; border-radius: 12px; background: #f7f9fc; }
.faq-intro-card h2 { margin: 0 0 10px; }
.faq-update { color: #56657a; font-size: 15px; }
.faq-category-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.faq-category-nav a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 999px; background: #e8f0ff; color: #173d7d; font-size: 14px; font-weight: 800; }
.faq-category-nav a:hover { background: #173d7d; color: #fff; }
.faq-category-nav span { display: grid; place-items: center; min-width: 25px; height: 25px; padding: 0 6px; border-radius: 999px; background: #fff; color: #173d7d; }
.faq-section { margin-top: 38px; scroll-margin-top: 24px; }
.faq-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 12px; margin-bottom: 14px; border-bottom: 3px solid #173d7d; }
.faq-section-heading h2 { margin: 0; font-size: 28px; }
.faq-section-heading > span { flex: 0 0 auto; padding: 7px 11px; border-radius: 999px; background: #173d7d; color: #fff; font-size: 13px; font-weight: 800; }
.faq-list { display: grid; gap: 11px; }
.faq-item { overflow: hidden; border: 1px solid #dce5f2; border-radius: 10px; background: #fff; box-shadow: 0 4px 14px rgba(13,35,75,.05); }
.faq-item summary { display: grid; grid-template-columns: 38px 1fr 28px; align-items: center; gap: 12px; padding: 17px 18px; cursor: pointer; list-style: none; color: #0d234b; font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #f4f7fb; }
.faq-number { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #ffc107; color: #0d234b; font-size: 15px; }
.faq-question { line-height: 1.4; }
.faq-toggle { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: #e8f0ff; color: #173d7d; font-size: 22px; line-height: 1; transition: transform .2s ease; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-item[open] summary { background: #f4f7fb; border-bottom: 1px solid #dce5f2; }
.faq-answer { padding: 18px 22px 20px 68px; }
.faq-answer p { margin: 0 0 13px; }
.faq-answer p:last-child, .faq-answer ul:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 5px 0 15px 22px; }
.faq-answer li { margin-bottom: 7px; }
.faq-contact-card { margin-top: 38px; padding: 28px; border-radius: 12px; background: linear-gradient(135deg,#0d234b,#255ab5); color: #fff; }
.faq-contact-card h2 { margin: 0 0 10px; color: #fff; }
.faq-contact-card a { display: inline-block; margin-top: 8px; padding: 12px 18px; border-radius: 8px; background: #ffc107; color: #111; font-weight: 800; }
@media (max-width: 1000px) {
  .sidebar { min-height: 0; height: auto; align-self: auto; }
  .hub-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .sidebar .cat-title { min-height: 62px; font-size: 15px; }
  .hub-intro, .hub-card { padding: 19px 17px; }
  .faq-intro-card { padding: 20px 17px; }
  .faq-section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .faq-section-heading h2 { font-size: 24px; }
  .faq-item summary { grid-template-columns: 34px 1fr 25px; gap: 9px; padding: 14px 12px; }
  .faq-number { width: 32px; height: 32px; }
  .faq-answer { padding: 16px 16px 18px; }
}
/* LCN-TAM-SOL-MENU-SON */
