/* ============================================
   BOSTEKNIK TARZI MODERN PROFESYONEL CSS
   ============================================ */

:root {
    --primary: #0a3d8f;
    --primary-dark: #072c66;
    --primary-light: #e8effc;
    --secondary: #0b1d33;
    --accent: #00b4d8;
    --accent-warm: #f59e0b;
    --dark: #0a1628;
    --gray-900: #1a2332;
    --gray-700: #3a4a5c;
    --gray-500: #6b7c8e;
    --gray-300: #c5cdd6;
    --gray-100: #f0f3f7;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-dark: linear-gradient(135deg, #0b1d33, #0a3d8f);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .07);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, .15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all .35s cubic-bezier(.4, 0, .2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #1a7f37, #2ea043);
    color: white;
    font-size: 13px;
    padding: 0;
    height: 36px;
    line-height: 36px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1049;
    overflow: hidden;
}

body {
    padding-top: 36px;
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
}

.top-bar .top-bar-inner,
.top-bar-left,
.top-bar-right {
    height: 36px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-left a {
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: white;
}

.top-bar-left a i {
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.top-bar-right a:hover {
    color: white;
    transform: scale(1.1);
}

.top-bar-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 8px;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, .25);
}

.top-bar-lang {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 12px !important;
    padding: 2px 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 4px;
    color: rgba(255, 255, 255, .6) !important;
    transition: var(--transition);
    opacity: .7;
}

.top-bar-lang.active {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .8);
    color: #fff !important;
    opacity: 1;
}

.top-bar-lang img {
    border-radius: 2px;
    vertical-align: middle;
}

.top-bar-lang:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .7);
    color: #fff !important;
    opacity: 1;
}

.top-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar {
    transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   NAVBAR (Fixed, Minimal like bosteknik)
   ============================================ */
.navbar-main {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: var(--transition);
    height: 85px;
}

.navbar-main.navbar-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar-main.navbar-transparent .brand-text {
    color: white;
}

.navbar-main.navbar-transparent .hamburger-btn span {
    background: white;
}

.navbar-main.navbar-transparent .navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-main.navbar-transparent .nav-cta-btn {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
}

.navbar-main.scrolled {
    top: 0;
    height: 70px;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.navbar-main.scrolled .brand-text {
    color: var(--primary);
}

.navbar-main.scrolled .hamburger-btn span {
    background: var(--dark);
}

.navbar-main.scrolled .navbar-brand img {
    filter: none;
}

.navbar-main.scrolled .nav-cta-btn {
    background: var(--primary);
    backdrop-filter: none;
    border: none;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    transition: var(--transition);
}

.navbar-main.scrolled .navbar-brand img {
    height: 50px;
}

.brand-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-logo2 {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.navbar-logo2 img {
    height: 50px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.navbar-main.scrolled .navbar-logo2 img {
    height: 40px;
}

@media (max-width: 991px) {
    .navbar-logo2 img {
        height: 36px;
        max-width: 90px;
    }
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 61, 143, .3);
}

/* ============================================
   DESKTOP NAVIGATION MENU
   ============================================ */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1200px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu>li>a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu>li>a i {
    font-size: 9px;
    transition: var(--transition);
}

.nav-menu>li:hover>a i {
    transform: rotate(180deg);
}

/* Transparan navbar - menÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ renkleri */
.navbar-transparent .nav-menu>li>a {
    color: rgba(255, 255, 255, .85);
}

.navbar-transparent .nav-menu>li>a:hover {
    color: white;
    background: rgba(255, 255, 255, .1);
}

.navbar-main.scrolled .nav-menu>li>a {
    color: var(--gray-700);
}

.navbar-main.scrolled .nav-menu>li>a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* Dropdown (Kurumsal vb.) */
.nav-dropdown {
    position: relative;
}

.dropdown-menu-nav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    list-style: none;
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1100;
    border: 1px solid rgba(0, 0, 0, .06);
}

.nav-dropdown:hover>.dropdown-menu-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-nav li a {
    display: block;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.dropdown-menu-nav li a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 24px;
}

/* Mega Menu (Hizmetlerimiz) */
.mega-menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: var(--transition);
    z-index: 1100;
    max-height: 80vh;
    overflow-y: auto;
}

.navbar-main.scrolled .mega-menu {
    top: 65px;
}

.nav-dropdown:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
}

.mega-col {
    padding: 10px 20px;
    border-right: 1px solid var(--gray-100);
}

.mega-col:nth-child(3n) {
    border-right: none;
}

.mega-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary) !important;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.mega-title i.me-1 {
    font-size: 13px;
}

.mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.mega-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.mega-col ul li .mega-service-item,
.submenu li .mega-service-item {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: default;
}

/* Hamburger */
.hamburger-btn {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    position: relative;
    z-index: 1060;
}

.hamburger-btn span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MasaÃƒÂ¼stÃƒÂ¼nde hamburger gizli, mobil/tablette gÃƒÂ¶rÃƒÂ¼nÃƒÂ¼r */
@media (min-width: 1200px) {
    .hamburger-btn {
        display: none;
    }
}

@media (max-width: 1199px) {
    .hamburger-btn {
        display: flex;
    }
}

/* ============================================
   SIDEBAR MENU (Right Panel like bosteknik)
   ============================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, .6);
    backdrop-filter: blur(4px);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--dark);
    z-index: 1060;
    transition: right .45s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px 10px;
}

.sidebar-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, .2);
}

.sidebar-scroll-top {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    cursor: pointer;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.sidebar-scroll-top:hover {
    color: white;
}

.sidebar-contact-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-contact-bar a {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-contact-bar a:hover {
    color: var(--accent);
}

.sidebar-contact-bar a i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.sidebar-social {
    display: flex;
    gap: 10px;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sidebar-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.sidebar-logo {
    padding: 25px 25px 15px;
    text-align: center;
}

.sidebar-logo img {
    height: 50px;
    opacity: .8;
}

.sidebar-nav {
    flex: 1;
    padding: 14px 14px 24px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* === 1. Seviye Menü Kartları === */
.sidebar-nav>ul>li {
    margin-bottom: 6px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .04);
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
}

.sidebar-nav>ul>li:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .08);
}

.sidebar-nav>ul>li.has-submenu.open {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
}

/* sb-row: link + chevron yan yana */
.sidebar-nav .sb-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.sidebar-nav .sb-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none;
    transition: color .2s ease;
    min-width: 0;
}

.sidebar-nav .sb-link:hover {
    color: var(--accent);
}

.sidebar-nav .sb-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Tek başına basit link */
.sidebar-nav>ul>li>a:not(.sb-link) {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.sidebar-nav>ul>li>a:not(.sb-link):hover {
    color: var(--accent);
}

/* Chevron Toggle Buton */
.sidebar-nav .submenu-toggle {
    flex-shrink: 0;
    width: 50px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, .55);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, .05);
    transition: color .2s ease, background .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.sidebar-nav .submenu-toggle:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.sidebar-nav .submenu-toggle:active {
    background: rgba(255, 255, 255, .08);
}

.sidebar-nav .submenu-toggle i {
    font-size: 12px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), background .25s ease, color .25s ease;
}

.sidebar-nav .has-submenu.open>.sb-row .submenu-toggle i {
    transform: rotate(180deg);
    background: var(--accent);
    color: #fff;
}

/* === Submenu (kategoriler) === */
.sidebar-nav .submenu {
    list-style: none;
    padding: 0 8px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1), padding .3s ease;
}

.sidebar-nav .has-submenu.open>.submenu {
    max-height: 3500px;
    padding: 6px 8px 12px;
}

/* 2. seviye kartlar (kategori) */
.sidebar-nav .submenu>li {
    margin: 4px 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, .22);
    transition: background .25s ease;
}

.sidebar-nav .submenu>li:hover {
    background: rgba(0, 0, 0, .32);
}

.sidebar-nav .submenu>li.has-submenu.open {
    background: rgba(0, 0, 0, .35);
}

.sidebar-nav .submenu .sb-link {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.sidebar-nav .submenu li>a:not(.sb-link) {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.sidebar-nav .submenu li>a:not(.sb-link):hover {
    color: var(--accent);
    background: rgba(255, 255, 255, .03);
}

/* Kategori chip ikon */
.sb-cat-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 165, 0, .14);
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.sidebar-nav .submenu>li:hover .sb-cat-icon {
    transform: scale(1.08);
}

.sidebar-nav .submenu>li.has-submenu.open .sb-cat-icon {
    background: var(--accent);
    color: #fff;
}

/* 3. seviye submenu (hizmetler/ürünler) */
.sidebar-nav .submenu .submenu {
    background: rgba(0, 0, 0, .28);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.sidebar-nav .submenu>li.has-submenu.open>.submenu {
    max-height: 1800px;
    padding: 6px 0;
}

.sidebar-nav .submenu .submenu li {
    background: transparent;
    margin: 0;
    border-radius: 0;
}

.sidebar-nav .submenu .submenu li a,
.sidebar-nav .submenu .submenu li .mega-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px 9px 56px;
    font-size: 13px;
    color: rgba(255, 255, 255, .68);
    font-weight: 400;
    position: relative;
    transition: color .2s ease, padding .2s ease, background .2s ease;
}

.sidebar-nav .submenu .submenu li a::before,
.sidebar-nav .submenu .submenu li .mega-service-item::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    transition: background .2s ease, transform .2s ease;
}

.sidebar-nav .submenu .submenu li a:hover {
    color: var(--accent);
    padding-left: 60px;
    background: rgba(255, 255, 255, .03);
}

.sidebar-nav .submenu .submenu li a:hover::before {
    background: var(--accent);
    transform: translateY(-50%) scale(1.4);
}

.sidebar-nav .submenu .submenu li .mega-service-item {
    cursor: default;
}

.sidebar-cta {
    padding: 20px 25px 30px;
}

.sidebar-lang-switcher {
    display: flex;
    gap: 10px;
    padding: 0 25px 15px;
    justify-content: center;
}

.sidebar-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: #f1f5f9;
    transition: var(--transition);
    text-decoration: none;
}

.sidebar-lang:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.sidebar-lang.active {
    background: var(--primary);
    color: white;
}

.sidebar-cta-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.sidebar-cta-btn:hover {
    background: #0096b7;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--dark);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .6), rgba(10, 61, 143, .3));
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255, 255, 255, .08), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 80px;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 180, 216, .15);
    border: 1px solid rgba(0, 180, 216, .35);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown .8s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 22px;
    animation: fadeInUp .8s ease;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .15);
}

.hero-content p,
.hero-content .hero-desc {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp .8s ease .2s both;
}

.hero-desc p {
    margin: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--accent);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    animation: fadeInUp .8s ease .4s both;
}

.hero-btn:hover {
    background: #0096b7;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, .4);
}

/* Slider Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, .1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, .2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, .5) !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 90px 0;
}

.section-dark {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 180, 216, .08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 61, 143, .07), transparent 50%),
        radial-gradient(circle at 1px 1px, rgba(10, 61, 143, .08) 1px, transparent 0);
    background-size: auto, auto, 28px 28px;
    pointer-events: none;
    opacity: .9;
}

.section-dark>.container {
    position: relative;
    z-index: 1;
}

.section-navy {
    background: var(--secondary);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header .badge-label {
    display: inline-block;
    background: rgba(0, 180, 216, .1);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    margin: 12px auto 0;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-navy .section-header .badge-label {
    background: rgba(0, 180, 216, .15);
}

.section-navy .section-header h2 {
    color: white;
}

.section-navy .section-header p {
    color: rgba(255, 255, 255, .6);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    padding-right: 40px;
}

.about-content .badge-label {
    display: inline-block;
    background: rgba(0, 180, 216, .1);
    color: var(--accent);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.3;
}

.about-content p {
    color: var(--gray-500);
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 15px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: var(--transition);
}

.about-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 61, 143, .25);
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: 40%;
    bottom: 40%;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1;
    opacity: .3;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform .6s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 22, 40, .25), transparent);
}

/* ============================================
   SERVICE CARDS (Image-based like bosteknik)
   ============================================ */
.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform .4s ease;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, .6), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-img .service-overlay {
    opacity: 1;
}

.service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card-body h4 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.service-card-body h4 a:hover {
    color: var(--primary);
}

.service-card-body p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 18px;
    flex: 1;
    line-height: 1.7;
}

.service-card-body .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-card-body .card-link i {
    transition: var(--transition);
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}

/* Service List Card (hizmet listesi - kategorili gÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶rÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼nÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼m) */
.service-list-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(10, 61, 143, .08);
    border-radius: var(--radius-sm);
    padding: 22px;
    text-decoration: none;
    color: var(--gray-700);
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
    position: relative;
    overflow: hidden;
}

.service-list-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.section-dark .service-list-card {
    color: var(--gray-700);
}

.service-list-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(10, 61, 143, .12);
    border-color: rgba(0, 180, 216, .35);
}

.service-list-card:hover::before {
    transform: scaleY(1);
}

.section:not(.section-dark) .service-list-card {
    background: var(--white);
}

.section:not(.section-dark) .service-list-card:hover {
    border-color: rgba(0, 180, 216, .35);
    background: var(--white);
}

.service-list-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 180, 216, .15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.service-list-card:hover .service-list-icon {
    background: var(--gradient);
    color: white;
}

.service-list-info {
    flex: 1;
    min-width: 0;
}

.service-list-info h5 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: inherit;
}

.service-list-info p {
    font-size: .82rem;
    opacity: .7;
    margin: 0;
    line-height: 1.4;
}

.service-list-arrow {
    flex-shrink: 0;
    font-size: 14px;
    opacity: .4;
    transition: var(--transition);
}

.service-list-card:hover .service-list-arrow {
    opacity: 1;
    transform: translateX(4px);
    color: var(--accent);
}

/* Service Icon Card (fallback when no image) */
.service-icon-card {
    background: white;
    border-radius: var(--radius);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .04);
}

.service-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(0, 180, 216, .1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-icon-card:hover .service-icon {
    background: var(--gradient);
    color: white;
}

.service-icon-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-icon-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 18px;
}

.service-icon-card .card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   PROCESS SECTION (Dark bg like bosteknik)
   ============================================ */
.process-section {
    background: var(--secondary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(0,180,216,0.04)" stroke-width="1"/></svg>') repeat;
    background-size: 300px;
}

.process-section .section-header h2 {
    color: white;
}

.process-section .section-header p {
    color: rgba(255, 255, 255, .6);
}

.process-section .section-header .badge-label {
    background: rgba(0, 180, 216, .15);
    color: var(--accent);
}

.process-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.process-step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 180, 216, .06);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.process-card:hover .process-step-num {
    color: rgba(0, 180, 216, .12);
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 180, 216, .1);
    border: 2px solid rgba(0, 180, 216, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
    position: relative;
}

.process-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 180, 216, .15);
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

.process-icon i {
    font-size: 30px;
    color: var(--accent);
}

.process-card:hover .process-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 180, 216, .25);
}

.process-card:hover .process-icon i {
    color: white;
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-size: 1rem;
}

.process-card p {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    line-height: 1.7;
}

.process-line {
    position: absolute;
    top: 65px;
    right: -50%;
    width: 100%;
    height: 1px;
    background: rgba(0, 180, 216, .15);
    z-index: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 180, 216, .3);
}

/* ============================================
   REFERENCE / PORTFOLIO
   ============================================ */
.ref-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
    transition: var(--transition);
    background: white;
    height: 100%;
}

.ref-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

.ref-card-img-link {
    display: block;
    height: 270px;
    overflow: hidden;
    position: relative;
}

.ref-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.ref-card:hover .ref-card-img-link img {
    transform: scale(1.06);
}

.ref-card-placeholder {
    width: 100%;
    height: 270px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}

.ref-card-body {
    padding: 20px 22px 22px;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.ref-card-body h4 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ref-card-body h4 a {
    color: var(--dark);
    text-decoration: none;
    transition: color .2s;
}

.ref-card-body h4 a:hover {
    color: var(--primary);
}

.ref-devami {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap .2s;
}

.ref-devami:hover {
    gap: 10px;
    color: var(--primary-dark, var(--primary));
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .04);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body .blog-meta {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-card-body .blog-meta span {
    margin-right: 15px;
}

.blog-card-body .blog-meta i {
    color: var(--accent);
    margin-right: 4px;
}

.blog-card-body h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.blog-card-body h5 a {
    color: var(--dark);
}

.blog-card-body h5 a:hover {
    color: var(--accent);
}

.blog-card-body p {
    color: var(--gray-500);
    font-size: 14px;
    flex: 1;
}

.blog-card-body .read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.blog-card-body .read-more:hover {
    gap: 10px;
}

/* ============================================
   LOGO BANDS (Protokoller / İş Ortakları)
   ============================================ */
.logo-bands-section {
    padding: 60px 0 40px;
    background: #fff;
}

.logo-band {
    margin-bottom: 50px;
}

.logo-band:last-child {
    margin-bottom: 0;
}

.logo-band-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 auto 35px;
    letter-spacing: 0.3px;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 14px;
}

.logo-band-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary, #f59e0b);
    margin: 12px auto 0;
    border-radius: 2px;
}

.logo-band-track {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-band-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    will-change: transform;
}

.logo-band-grid--ltr {
    animation: logo-marquee-ltr 40s linear infinite;
}

.logo-band-grid--rtl {
    animation: logo-marquee-rtl 40s linear infinite;
}

.logo-band-track:hover .logo-band-grid {
    animation-play-state: paused;
}

@keyframes logo-marquee-ltr {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes logo-marquee-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-band-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    min-width: 120px;
    flex-shrink: 0;
    transition: transform .3s ease, filter .3s ease;
    filter: grayscale(100%);
    opacity: .75;
}

.logo-band-item>a,
.logo-band-item>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-band-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
}

.logo-band-item img {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-bands-section {
        padding: 40px 0 20px;
    }

    .logo-band {
        margin-bottom: 35px;
    }

    .logo-band-item {
        height: 50px;
    }

    .logo-band-item img {
        max-height: 45px;
        max-width: 110px;
    }

    .logo-band-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(0,180,216,0.06)" stroke-width="1"/></svg>') repeat;
    background-size: 250px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, .08), transparent 70%);
    top: -100px;
    right: -100px;
}

.cta-section>* {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: .75;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 14px;
    background: var(--accent);
    opacity: .3;
    filter: blur(12px);
    transition: var(--transition);
    z-index: -1;
}

.cta-btn:hover {
    background: #0096b7;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, .35);
}

.cta-btn:hover::before {
    opacity: .5;
    filter: blur(18px);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--gradient-dark);
    padding: 170px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(0,180,216,0.05)" stroke-width="1"/></svg>') repeat;
    background-size: 200px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.page-header .breadcrumb {
    justify-content: center;
    position: relative;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, .7);
}

.page-header .breadcrumb-item.active {
    color: var(--accent);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .04);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 180, 216, .1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--gray-500);
    font-size: 14px;
}

.contact-form {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, .1);
}

.contact-form textarea {
    min-height: 150px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    color: inherit;
}

.product-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 20px;
}

.product-card-body h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.product-card-body p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.product-card:hover .product-link {
    color: var(--accent);
    gap: 10px;
}

.product-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-detail-img img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    overflow-wrap: break-word;
    word-break: break-word;
}

.product-detail-content img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

.product-features {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 25px 30px;
}

.product-features h4 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #0b1d33 0%, #0a1628 100%);
    color: rgba(255, 255, 255, .65);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .5);
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 1rem;
    position: relative;
    padding-bottom: 14px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .5);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .4;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 180, 216, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-icon i {
    color: var(--accent);
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255, 255, 255, .55);
}

.footer-contact a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: var(--transition);
    font-size: 15px;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 0;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .35);
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ============================================
   WHATSAPP & BACK TO TOP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.4, 0, .2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
    transition-delay: .1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: .2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: .3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: .4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: .5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-box {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 30px 35px;
    box-shadow: var(--shadow);
}

.detail-box-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.service-detail-content {
    line-height: 1.9;
    overflow-wrap: break-word;
    word-break: break-word;
}

.service-detail-content h2,
.service-detail-content h3 {
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content p {
    margin-bottom: 15px;
}

.service-detail-content img {
    border-radius: 20px;
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

/* EditÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶r resim konumlandÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±rma */
.img-left {
    float: left;
    margin: 0 20px 15px 0;
    max-width: 50%;
    border-radius: 20px;
}

.img-right {
    float: right;
    margin: 0 0 15px 20px;
    max-width: 50%;
    border-radius: 20px;
}

.img-center {
    display: block;
    margin: 20px auto;
    border-radius: 20px;
}

.img-full {
    display: block;
    width: 100%;
    margin: 20px 0;
    border-radius: 20px;
}

.service-sidebar .sidebar-card {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.service-sidebar .sidebar-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
}

.service-sidebar .service-list {
    list-style: none;
    padding: 0;
}

.service-sidebar .service-list li {
    margin-bottom: 8px;
}

.service-sidebar .service-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.service-sidebar .service-list li a:hover,
.service-sidebar .service-list li a.active {
    background: rgba(0, 180, 216, .08);
    color: var(--accent);
}

/* ============================================
   BLOG DETAIL PAGE
   ============================================ */
.blog-detail-content {
    line-height: 1.9;
    overflow-wrap: break-word;
    word-break: break-word;
}

.blog-detail-content img {
    border-radius: 20px;
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

.blog-detail-meta {
    font-size: 14px;
    color: var(--gray-500);
}

.blog-detail-meta span {
    margin-right: 20px;
}

.blog-detail-meta i {
    color: var(--accent);
    margin-right: 5px;
}

.blog-featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-featured-img img {
    width: 100%;
    height: auto;
}

/* ============================================
   UTILITY
   ============================================ */
.placeholder-img {
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 48px;
    min-height: 200px;
}

.btn-accent {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accent:hover {
    background: #0096b7;
    color: white;
    transform: translateY(-1px);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: white;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline-hero:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 61, 143, .25);
}

/* ============================================
   HIZMETLER - MODERN KATEGORİ KARTLARI
   ============================================ */
.category-chips-bar {
    background: #fff;
    border-bottom: 1px solid rgba(10, 61, 143, .08);
    padding: 14px 0;
    position: sticky;
    top: 106px;
    z-index: 40;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.category-chips-bar>.container {
    position: relative;
}

.category-chips-bar>.container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, #fff, transparent);
    pointer-events: none;
    border-top-right-radius: inherit;
}

.category-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 40px 2px 2px;
    scroll-padding-right: 40px;
}

.category-chips::-webkit-scrollbar {
    display: none;
}

.category-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #f3f6fb;
    border: 1px solid transparent;
    color: var(--gray-700);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.category-chip i {
    color: var(--accent);
    font-size: 13px;
}

.category-chip em {
    font-style: normal;
    background: var(--gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 2px;
}

.category-chip:hover {
    background: #fff;
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 61, 143, .1);
}

.services-hero-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 180, 216, .08), transparent 40%),
        radial-gradient(circle at 85% 90%, rgba(10, 61, 143, .08), transparent 40%),
        #fff;
}

.category-modern-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 36px 30px 30px;
    background: #fff;
    border: 1px solid rgba(10, 61, 143, .08);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.category-modern-card::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.category-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px rgba(10, 61, 143, .22);
    border-color: rgba(0, 180, 216, .3);
    color: inherit;
}

.category-modern-card:hover::before {
    transform: scaleX(1);
}

.category-modern-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 216, .12), rgba(10, 61, 143, .1));
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 22px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.category-modern-card:hover .category-modern-icon {
    background: var(--gradient);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 180, 216, .3);
}

.category-modern-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.category-modern-count {
    display: inline-block;
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 180, 216, .1);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.category-modern-body h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.category-modern-body p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}

.category-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.category-modern-card:hover .category-modern-link {
    color: var(--accent);
    gap: 12px;
}

.category-modern-number {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(10, 61, 143, .08);
    pointer-events: none;
    transition: var(--transition);
}

.category-modern-card:hover .category-modern-number {
    -webkit-text-stroke-color: rgba(0, 180, 216, .25);
    transform: scale(1.05);
}

/* Kategori Detay Başlığı */
.category-detail-header {
    position: relative;
}

.category-detail-num {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.category-detail-num::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 10px;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .category-chips-bar {
        top: 70px;
    }

    .category-modern-number {
        font-size: 48px;
        right: 18px;
        top: 14px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .navbar-main {
        height: 70px;
        top: 36px;
    }

    .navbar-main.scrolled {
        height: 65px;
        top: 0;
    }
}

@media (max-width: 768px) {
    .navbar-main {
        top: 0 !important;
    }
}

@media (max-width: 991px) {

    .navbar-brand img {
        height: 50px;
    }

    .navbar-main.scrolled .navbar-brand img {
        height: 45px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-section {
        height: 75vh;
        min-height: 500px;
    }

    .section {
        padding: 65px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 120px 0 50px;
        margin-top: 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .process-section {
        padding: 65px 0;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .nav-cta-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-section {
        height: 65vh;
        min-height: 450px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Mobilde float resimler tam geniÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸lik olsun */
@media (max-width: 576px) {

    .img-left,
    .img-right {
        float: none;
        max-width: 100%;
        margin: 15px 0;
    }
}

/* Float temizleme */
.service-detail-content::after,
.product-detail-content::after,
.blog-detail-content::after {
    content: '';
    display: table;
    clear: both;
}

/* ============================================
   SSS / FAQ ACCORDION
   ============================================ */
.faq-accordion .faq-item {
    background: #fff;
    border: 1px solid rgba(10, 61, 143, .08);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .25s ease;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.faq-accordion .faq-item:hover {
    box-shadow: 0 6px 20px rgba(10, 61, 143, .08);
}

.faq-accordion .accordion-button {
    background: #fff;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 22px;
    border: 0;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a3d8f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.faq-q-text {
    flex: 1;
    line-height: 1.4;
}

.faq-accordion .accordion-body {
    padding: 4px 22px 22px 68px;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 576px) {
    .faq-accordion .accordion-button {
        padding: 14px 16px;
        font-size: 14.5px;
        gap: 10px;
    }

    .faq-accordion .accordion-body {
        padding: 4px 16px 18px 16px;
        font-size: 14px;
    }
}


/* ============================================
   SSS / FAQ ACCORDION
   ============================================ */
.faq-accordion .faq-item {
    background: #fff;
    border: 1px solid rgba(10, 61, 143, .08);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .25s ease;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
}

.faq-accordion .faq-item:hover {
    box-shadow: 0 6px 20px rgba(10, 61, 143, .08);
}

.faq-accordion .accordion-button {
    background: #fff;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 22px;
    border: 0;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a3d8f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-q-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.faq-q-text {
    flex: 1;
    line-height: 1.4;
}

.faq-accordion .accordion-body {
    padding: 4px 22px 22px 68px;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 576px) {
    .faq-accordion .accordion-button {
        padding: 14px 16px;
        font-size: 14.5px;
        gap: 10px;
    }

    .faq-accordion .accordion-body {
        padding: 4px 16px 18px 16px;
        font-size: 14px;
    }
}