/* ===== LOADING EKRANI ===== */
.yukleniyor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.yukleniyor.yuklendi {
    opacity: 0;
    visibility: hidden;
}

.yukleniyor-icerik {
    text-align: center;
}

.yukleniyor-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yukleniyor-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.08);
    border-top-color: var(--secondary);
    animation: circleRotate 1s linear infinite;
}

@keyframes circleRotate {
    to { transform: rotate(360deg); }
}

.yukleniyor-icon-wrap i {
    font-size: 30px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.yukleniyor-img {
    max-height: 36px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(1);
}

.yukleniyor-yazi {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin: 0 0 16px;
    letter-spacing: 1px;
}

.yukleniyor-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.yukleniyor-bar-dolgu {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), #fff, var(--secondary));
    border-radius: 3px;
    animation: barSlide 1.4s ease-in-out infinite;
}

@keyframes barSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(320%); }
}

/* ===== GENEL AYARLAR ===== */
:root {
    --primary: #1a3a5c;
    --secondary: #e8a838;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* ===== UST BAR ===== */
.top-bar {
    background: var(--dark);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-info span {
    margin-right: 20px;
}

.top-info span a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-info span a:hover {
    color: var(--secondary);
}

.top-info i {
    color: var(--secondary);
    margin-right: 5px;
}

.top-social {
    padding-left: 30px;
}

.top-social a {
    color: #fff;
    margin-left: 15px;
    font-size: 14px;
}

.top-social a:hover {
    color: var(--secondary);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    color: var(--primary) !important;
    margin-left: 30px;
}

.navbar-logo {
    max-height: 60px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    color: var(--dark) !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
}

.nav-wp-btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 6px;
    margin-top: 0;
}

.dropdown-item {
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(26,58,92,0.05), rgba(232,168,56,0.05));
    color: var(--primary);
    padding-left: 18px;
}

/* ===== SLIDER ===== */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-img {
    height: 450px;
    object-fit: cover;
    filter: brightness(0.6);
}

.carousel-caption {
    background: none;
    border-radius: 0;
    padding: 0;
    bottom: auto;
    top: 50%;
    left: 8%;
    right: 40%;
    transform: translateY(-50%);
    text-align: left;
}

.carousel-caption h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 15px;
    opacity: 0.92;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 500px;
}

.slider-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #e8a838, #f0c060);
    color: #1a1a2e;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
    border: none;
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
    position: relative;
    z-index: 5;
    text-transform: uppercase;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #fff, #f8f8f8);
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.slider-btn i {
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.slider-btn:hover i {
    transform: translateX(3px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 0.7;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    background-size: 40%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.carousel-indicators {
    margin-bottom: 20px;
}

.carousel-indicators button {
    width: 30px;
    height: 4px;
    border-radius: 3px;
    margin: 0 4px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    width: 45px;
    background-color: var(--secondary);
}

/* Slider overlay gradient */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.7) 0%, transparent 100%);
    pointer-events: none;
}

/* ===== HERO / SLIDER ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-pattern.png') repeat;
    opacity: 0.05;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #d4952e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 168, 56, 0.3);
}

/* ===== BOLUM BASLIKLARI ===== */
/* Platinum Section Header */
.section-header-platinum {
    text-align: center;
    margin-bottom: 55px;
}

.section-header-platinum h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header-platinum p {
    color: #5a6577;
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.08), rgba(232, 168, 56, 0.08));
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 15px auto 0;
}

/* ===== HIZMETLER SECTION (ANASAYFA) ===== */
.hizmetler-vitrin {
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.03) 0%, rgba(232, 168, 56, 0.04) 50%, rgba(26, 26, 46, 0.02) 100%);
    border-top: 1px solid rgba(26, 58, 92, 0.05);
    border-bottom: 1px solid rgba(26, 58, 92, 0.05);
}

.hizmetler-vitrin-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse at center, rgba(232, 168, 56, 0.035) 0%, rgba(26, 58, 92, 0.02) 40%, transparent 70%);
    pointer-events: none;
}

.hizmetler-vitrin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231a3a5c' fill-opacity='0.012'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Vitrin Kart - Platinum */
.vitrin-kart {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.02),
        0 4px 8px rgba(0,0,0,0.02),
        0 12px 32px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.vitrin-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.vitrin-kart:hover {
    transform: translateY(-16px) scale(1.01);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.02),
        0 12px 24px rgba(0,0,0,0.04),
        0 32px 64px rgba(26, 58, 92, 0.12),
        0 0 0 1px rgba(232, 168, 56, 0.1);
}

.vitrin-kart:hover::before {
    opacity: 1;
}

.vitrin-kart-gorsel {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.vitrin-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: brightness(0.97) saturate(1.05);
}

.vitrin-kart:hover .vitrin-kart-gorsel img {
    transform: scale(1.1);
    filter: brightness(1.02) saturate(1.1);
}

.vitrin-kart-gorsel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.vitrin-kart-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8fafd, #edf1f7);
    position: relative;
}

.vitrin-kart-placeholder::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,58,92,0.04), rgba(232,168,56,0.04));
}

.vitrin-kart-placeholder i {
    font-size: 52px;
    color: var(--primary);
    opacity: 0.2;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.vitrin-kart:hover .vitrin-kart-placeholder i {
    opacity: 0.5;
    color: var(--secondary);
    transform: scale(1.15) rotate(-5deg);
}

.vitrin-kart-ust {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
}

.vitrin-numara {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    letter-spacing: -0.5px;
    transition: all 0.4s ease;
}

.vitrin-kart:hover .vitrin-numara {
    background: var(--primary);
    color: #fff;
    transform: rotate(-3deg) scale(1.05);
}

.vitrin-kart-icerik {
    padding: 24px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vitrin-kart-icerik h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.vitrin-kart:hover .vitrin-kart-icerik h3 {
    color: var(--primary);
}

.vitrin-kart-icerik p {
    color: #6b7280;
    font-size: 14.5px;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}

.vitrin-kart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.vitrin-kart-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.4s ease;
}

.vitrin-kart:hover .vitrin-kart-btn::after {
    width: 100%;
}

.vitrin-kart-btn i {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 13px;
}

.vitrin-kart:hover .vitrin-kart-btn {
    color: var(--secondary);
}

.vitrin-kart:hover .vitrin-kart-btn i {
    transform: translateX(8px);
}

.btn-tumu-gor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), #2a5a8c);
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-tumu-gor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-tumu-gor:hover::before {
    left: 100%;
}

.btn-tumu-gor:hover {
    background: linear-gradient(135deg, var(--secondary), #d4952e);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 168, 56, 0.35);
}

/* ===== HIZMETLER SAYFASI ===== */
.hizmetler-sayfa-alan {
    padding: 80px 0;
    background: #f9fafb;
}

.hizmet-sayfa-kart {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 3px 20px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hizmet-sayfa-kart:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 58, 92, 0.1);
    border-color: transparent;
}

.hizmet-sayfa-kart-gorsel {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.hizmet-sayfa-kart-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hizmet-sayfa-kart:hover .hizmet-sayfa-kart-gorsel img {
    transform: scale(1.06);
}

.hizmet-sayfa-kart-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8, #e4eaf0);
}

.hizmet-sayfa-kart-ph i {
    font-size: 60px;
    color: var(--primary);
    opacity: 0.25;
}

.hizmet-sayfa-kart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hizmet-sayfa-kart:hover .hizmet-sayfa-kart-overlay {
    opacity: 1;
}

.hizmet-sayfa-kart-gor {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.hizmet-sayfa-kart:hover .hizmet-sayfa-kart-gor {
    transform: translateY(0);
}

.hizmet-sayfa-kart-body {
    padding: 28px;
    flex: 1;
    position: relative;
}

.hizmet-sayfa-kart-no {
    position: absolute;
    top: -18px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(232, 168, 56, 0.3);
}

.hizmet-sayfa-kart-body h3 {
    font-size: 20px;
    font-weight: 650;
    color: var(--dark);
    margin-bottom: 8px;
}

.hizmet-sayfa-kart-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== HIZMET DETAY ===== */

.detay-icerik {
    padding: 70px 0;
}

/* Gorsel Pro */
.detay-gorsel-pro {
    position: relative;
    margin-bottom: 24px;
    border-radius: 14px;
    overflow: hidden;
    max-width: 100%;
}

.detay-gorsel-pro img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    display: block;
    background: #f9fafb;
    border-radius: 14px;
}

.detay-gorsel-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detay-gorsel-badge i {
    color: var(--secondary);
    margin-right: 6px;
}

/* Yazi Pro */
.detay-yazi-pro {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.detay-yazi-baslik {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.detay-yazi-baslik::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.detay-yazi-baslik h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.detay-yazi-ozet {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.detay-yazi-icerik {
    font-size: 15px;
    line-height: 2;
    color: #444;
}

.detay-yazi-icerik h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 3px solid var(--secondary);
}

.detay-yazi-icerik h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 25px;
    margin-bottom: 12px;
}

.detay-yazi-icerik h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.detay-yazi-icerik p {
    margin-bottom: 16px;
    color: #555;
}

.detay-yazi-icerik img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.detay-yazi-icerik ul,
.detay-yazi-icerik ol {
    padding-left: 0;
    margin-bottom: 18px;
    list-style: none;
}

.detay-yazi-icerik ul li,
.detay-yazi-icerik ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.detay-yazi-icerik ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.detay-yazi-icerik ol {
    counter-reset: item;
}

.detay-yazi-icerik ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--primary), #2a5a8c);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detay-yazi-icerik blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.03), rgba(232, 168, 56, 0.03));
    border-left: 4px solid var(--secondary);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

.detay-yazi-icerik strong {
    color: var(--dark);
}

.detay-yazi-icerik a {
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px dashed var(--secondary);
    transition: all 0.3s ease;
}

.detay-yazi-icerik a:hover {
    color: var(--secondary);
    border-bottom-style: solid;
}

@media (max-width: 767px) {
    .detay-yazi-pro {
        padding: 24px;
        border-radius: 14px;
    }
    
    .detay-yazi-baslik h2 {
        font-size: 22px;
    }
    
    .detay-gorsel-pro {
        border-radius: 14px;
        margin-bottom: 24px;
    }
}

/* Detay Sidebar */
.detay-sidebar {
    position: sticky;
    top: 100px;
}

.detay-sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
    color: #fff;
}

.detay-sidebar-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--secondary);
}

.detay-sidebar-cta h4 {
    font-size: 20px;
    font-weight: 650;
    margin-bottom: 8px;
}

.detay-sidebar-cta p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.6;
}

.detay-sidebar-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: var(--secondary);
    color: #fff;
}

.detay-sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.detay-sidebar-btn-wp {
    background: #25d366;
}

.detay-sidebar-btn-form {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
}

.detay-sidebar-btn-form:hover {
    background: #fff;
    color: var(--primary);
}

.detay-sidebar-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #eee;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.detay-sidebar-box h4 {
    font-size: 17px;
    font-weight: 650;
    color: var(--dark);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f0;
}

.detay-sidebar-liste {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detay-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.detay-sidebar-item:hover {
    background: var(--primary);
    transform: translateX(4px);
}

.detay-sidebar-item-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detay-sidebar-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detay-sidebar-item-img i {
    font-size: 18px;
    color: var(--gray);
}

.detay-sidebar-item-text {
    flex: 1;
    min-width: 0;
}

.detay-sidebar-item-text strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detay-sidebar-item-text small {
    color: var(--gray);
    font-size: 12px;
}

.detay-sidebar-item-arrow {
    font-size: 11px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.detay-sidebar-item:hover .detay-sidebar-item-text strong,
.detay-sidebar-item:hover .detay-sidebar-item-text small,
.detay-sidebar-item:hover .detay-sidebar-item-arrow,
.detay-sidebar-item:hover .detay-sidebar-item-img i {
    color: #fff;
}

.detay-sidebar-item:hover .detay-sidebar-item-arrow {
    transform: translateX(3px);
}

/* ===== AVANTAJLAR SECTION ===== */
.avantajlar-section {
    padding: 40px 0 40px;
    background: #fff;
    position: relative;
}

/* Avantaj Platinum Kart */
.avantaj-plat {
    text-align: center;
    padding: 40px 28px 35px;
    border-radius: 20px;
    background: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 1px 2px rgba(0,0,0,0.02),
        0 4px 12px rgba(0,0,0,0.03),
        0 12px 32px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.avantaj-plat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.avantaj-plat::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.04), transparent 70%);
    transition: all 0.5s ease;
}

.avantaj-plat:hover {
    transform: translateY(-10px);
    box-shadow:
        0 4px 8px rgba(0,0,0,0.02),
        0 12px 24px rgba(0,0,0,0.04),
        0 28px 56px rgba(26, 58, 92, 0.1);
    border-color: rgba(232, 168, 56, 0.15);
}

.avantaj-plat:hover::before {
    opacity: 1;
}

.avantaj-plat:hover::after {
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.08), transparent 70%);
}

.avantaj-plat-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    background: linear-gradient(145deg, #f8fafd, #edf2f7);
    border: 2px solid rgba(26, 58, 92, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.avantaj-plat-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.avantaj-plat:hover .avantaj-plat-icon {
    background: linear-gradient(135deg, var(--primary), #2a5a8c);
    border-color: transparent;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.2);
}

.avantaj-plat:hover .avantaj-plat-icon i {
    color: #fff;
}

.avantaj-plat h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.avantaj-plat:hover h4 {
    color: var(--primary);
}

.avantaj-plat p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 16px;
}

.avantaj-plat-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), rgba(232, 168, 56, 0.3));
    border-radius: 3px;
    margin: 0 auto;
    transition: width 0.4s ease;
}

.avantaj-plat:hover .avantaj-plat-line {
    width: 60px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 40px 0 80px;
    background: #fff;
}

.cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    border-radius: 20px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(232, 168, 56, 0.1);
    border-radius: 50%;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-inner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin: 0;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px;
}

.cta-btn-phone {
    background: var(--secondary);
    color: #fff;
}

.cta-btn-phone:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.cta-btn-wp {
    background: #25d366;
    color: #fff;
}

.cta-btn-wp:hover {
    background: #fff;
    color: #25d366;
    transform: translateY(-2px);
}

/* ===== ESKI STILLER KALDIRILDI ===== */

/* ===== HAKKIMIZDA SECTION ===== */
.hakkimizda-section {
    padding: 90px 0 60px;
    background: #fff;
}

.hakkimizda-gorsel {
    position: relative;
}

.hakkimizda-gorsel img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.hakkimizda-gorsel-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border-radius: 20px;
    border: 3px solid var(--secondary);
    opacity: 0.3;
    z-index: 1;
}

.hakkimizda-icerik {
    padding-left: 10px;
}

.hakkimizda-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.06), rgba(232, 168, 56, 0.06));
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hakkimizda-badge i {
    margin-right: 5px;
    color: var(--secondary);
}

.hakkimizda-icerik h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hakkimizda-yazi {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

.hakkimizda-yazi p {
    margin-bottom: 14px;
}

.hakkimizda-yazi h3, .hakkimizda-yazi h4 {
    color: var(--dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.hakkimizda-yazi img {
    max-width: 100%;
    border-radius: 12px;
    margin: 15px 0;
}

/* ===== RAKAMLAR SECTION ===== */
.rakamlar-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.03) 0%, rgba(232, 168, 56, 0.04) 50%, rgba(26, 26, 46, 0.02) 100%);
    border-top: 1px solid rgba(26, 58, 92, 0.05);
    border-bottom: 1px solid rgba(26, 58, 92, 0.05);
}

.rakamlar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rakam-item {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.02),
        0 4px 12px rgba(0,0,0,0.03),
        0 12px 32px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rakam-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rakam-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 58, 92, 0.1);
}

.rakam-item:hover::before {
    opacity: 1;
}

.rakam-deger {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rakam-yazi {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 991px) {
    .hakkimizda-section {
        padding: 60px 0 40px;
    }
    
    .hakkimizda-gorsel {
        margin-bottom: 30px;
    }
    
    .hakkimizda-gorsel-accent {
        display: none;
    }
    
    .hakkimizda-icerik {
        padding-left: 0;
    }
    
    .hakkimizda-icerik h2 {
        font-size: 28px;
    }
    
    .rakamlar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .rakamlar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .rakam-item {
        padding: 24px 14px;
    }
    
    .rakam-deger {
        font-size: 32px;
    }
}

/* ===== SAYFA BANNER (ESKI - detay sayfalari icin) ===== */
.sayfa-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.sayfa-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ===== ICERIK ALANI ===== */
.icerik-alan {
    padding: 80px 0;
}

.icerik-alan h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.icerik-alan h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.icerik-alan p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.icerik-alan img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== ILETISIM ===== */
.iletisim-section {
    padding: 80px 0;
    background: #fff;
}

/* Iletisim Kartlari */
.iletisim-kartlar {
    margin-bottom: 20px;
}

.iletisim-kart {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.iletisim-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 58, 92, 0.08);
    border-color: rgba(232, 168, 56, 0.15);
}

.iletisim-kart-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #2a5a8c);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #fff;
    transition: all 0.4s ease;
}

.iletisim-kart-icon-wp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.iletisim-kart:hover .iletisim-kart-icon {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(26, 58, 92, 0.2);
}

.iletisim-kart h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.iletisim-kart a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.iletisim-kart a:hover {
    color: var(--secondary);
}

.iletisim-kart p {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Form Pro */
.iletisim-form-pro {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
}

.iletisim-form-header {
    margin-bottom: 28px;
}

.iletisim-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.iletisim-form-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.form-group-pro {
    margin-bottom: 0;
}

.form-group-pro label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-group-pro .form-control {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group-pro .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.08);
    background: #fff;
}

.iletisim-gonder-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary), #2a5a8c);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.2);
}

.iletisim-gonder-btn:hover {
    background: linear-gradient(135deg, var(--secondary), #d4952e);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 168, 56, 0.3);
}

/* Bilgi Pro */
.iletisim-bilgi-pro {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    height: 100%;
}

.iletisim-bilgi-header {
    margin-bottom: 20px;
}

.iletisim-bilgi-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.iletisim-saatler {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.iletisim-saatler li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.iletisim-saatler li:last-child {
    border-bottom: none;
}

.iletisim-saatler li span {
    color: #6b7280;
    font-size: 14px;
}

.iletisim-saatler li strong {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.iletisim-bilgi-cta {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    color: #fff;
}

.iletisim-bilgi-cta h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.iletisim-bilgi-cta p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.iletisim-bilgi-tel {
    display: inline-block;
    padding: 10px 24px;
    background: var(--secondary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.iletisim-bilgi-tel:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Harita */
.harita-section {
    padding: 0 0 80px;
    background: #fff;
}

.harita-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.harita-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 767px) {
    .iletisim-form-pro,
    .iletisim-bilgi-pro {
        padding: 24px;
    }
    
    .harita-wrapper iframe {
        height: 280px;
    }
}

/* ===== FOOTER PRO ===== */
.footer-pro {
    background: var(--dark);
    color: #ccc;
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand h4 {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    margin: 0;
}

.footer-logo {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-social-pro {
    display: flex;
    gap: 10px;
}

.footer-social-pro a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-pro a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links-pro {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-pro li {
    margin-bottom: 10px;
}

.footer-links-pro a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-pro a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.footer-links-pro a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-links-pro a:hover::before {
    background: var(--secondary);
}

.footer-contact-pro {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-pro li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 14px;
}

.footer-contact-pro li span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2px;
}

.footer-contact-pro li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact-pro li a:hover {
    color: var(--secondary);
}

.footer-contact-pro li p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.footer-bottom-pro {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom-pro p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-pro a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-pro a:hover {
    color: var(--secondary);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .slider-img {
        height: 380px;
    }
    
    .carousel-caption {
        right: 15%;
        left: 6%;
    }
    
    .carousel-caption h2 {
        font-size: 30px;
    }
    
    .hizmetler-section,
    .avantajlar-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .cta-inner {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-inner h2 {
        font-size: 24px;
    }
    
    .sayfa-banner-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 26px;
    }
    
    .section-title h2,
    .section-header h2 {
        font-size: 26px;
    }
    
    .sayfa-banner h1,
    .sayfa-banner-content h1 {
        font-size: 26px;
    }
    
    .icerik-alan {
        padding: 50px 0;
    }
    
    .slider-img {
        height: 300px;
    }
    
    .carousel-caption {
        left: 5%;
        right: 10%;
        transform: translateY(-50%);
    }
    
    .carousel-caption h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .carousel-caption p {
        font-size: 13px;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .slider-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .carousel-item::after {
        width: 100%;
        background: linear-gradient(to right, rgba(26, 26, 46, 0.75) 0%, rgba(26, 26, 46, 0.3) 100%);
    }
    
    .hizmetler-vitrin,
    .avantajlar-section,
    .hizmetler-sayfa-alan {
        padding: 60px 0;
    }
    
    .vitrin-kart-gorsel {
        height: 200px;
    }
    
    .vitrin-kart-icerik,
    .hizmet-sayfa-kart-body {
        padding: 20px;
    }
    
    .vitrin-kart-icerik h3 {
        font-size: 18px;
    }
    
    .detay-banner {
        padding: 70px 0 50px;
    }
    
    .detay-banner-content h1 {
        font-size: 26px;
    }
    
    .detay-icerik {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-inner {
        padding: 30px 20px;
    }
    
    .cta-btn {
        display: block;
        margin: 8px 0;
        text-align: center;
    }
}

/* ===== SSS SECTION ===== */
.sss-pro-section {
    padding: 80px 0;
    background: #fff;
}

/* Sol Panel */
.sss-info-panel {
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 100%);
    border-radius: 24px;
    padding: 40px 32px;
    color: #fff;
    position: sticky;
    top: 100px;
}

.sss-info-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.sss-info-panel h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sss-info-panel > p {
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 28px;
}

.sss-info-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.sss-info-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sss-info-stat i {
    width: 36px;
    height: 36px;
    background: rgba(232, 168, 56, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--secondary);
}

.sss-info-stat strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.sss-info-stat span {
    font-size: 12px;
    opacity: 0.6;
}

.sss-info-contact p {
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 12px;
}

.sss-info-btn {
    display: block;
    padding: 12px 20px;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.sss-info-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.sss-info-btn-tel {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}

.sss-info-btn-tel:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

/* Sag: Accordion */
.sss-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sss-acc-item {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #eef0f3;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sss-acc-item:hover {
    border-color: rgba(26, 58, 92, 0.12);
    box-shadow: 0 6px 24px rgba(26, 58, 92, 0.05);
}

.sss-acc-item.sss-acc-active,
.sss-acc-item:has(.collapse.show) {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.08);
}

.sss-acc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.sss-acc-header:hover {
    background: rgba(26, 58, 92, 0.015);
}

.sss-acc-num {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: linear-gradient(135deg, #f0f4f8, #e8edf3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    transition: all 0.4s ease;
}

.sss-acc-header[aria-expanded="true"] .sss-acc-num {
    background: linear-gradient(135deg, var(--primary), #2a5a8c);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.2);
}

.sss-acc-title {
    flex: 1;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sss-acc-header[aria-expanded="true"] .sss-acc-title {
    color: var(--primary);
}

.sss-acc-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sss-acc-header[aria-expanded="true"] .sss-acc-arrow {
    color: var(--secondary);
    transform: rotate(45deg);
}

.sss-acc-body {
    padding: 0 24px 22px 78px;
    font-size: 14.5px;
    line-height: 1.85;
    color: #555;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
    margin-top: -4px;
}

.sss-acc-body p {
    margin-bottom: 8px;
}

.sss-acc-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .sss-info-panel {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .sss-pro-section {
        padding: 50px 0;
    }
    
    .sss-info-panel {
        padding: 28px 22px;
    }
    
    .sss-info-panel h3 {
        font-size: 18px;
    }
    
    .sss-acc-header {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .sss-acc-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 11px;
    }
    
    .sss-acc-title {
        font-size: 14px;
    }
    
    .sss-acc-body {
        padding: 12px 18px 18px 18px;
        font-size: 13.5px;
    }
}

/* ===== ESKI KATEGORI (kaldirildi) ===== */

/* ===== SAYFA BANNER PRO ===== */
.sayfa-banner-pro {
    position: relative;
    padding: 50px 0 40px;
    overflow: hidden;
}

.sayfa-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.sayfa-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.sayfa-banner-bg .sayfa-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.55), rgba(26, 58, 92, 0.45));
    z-index: 2;
}

.sayfa-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 3;
}

.sayfa-banner-content {
    position: relative;
    z-index: 5;
    color: #fff;
}

.sayfa-banner-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sayfa-banner-content p {
    font-size: 15px;
    opacity: 0.85;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sayfa-banner-content .breadcrumb {
    margin-bottom: 12px;
}

.sayfa-banner-content .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.sayfa-banner-content .breadcrumb-item a:hover {
    color: var(--secondary);
}

.sayfa-banner-content .breadcrumb-item.active {
    color: var(--secondary);
}

.sayfa-banner-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ===== 404 SAYFA ===== */
.sayfa-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 100%);
}

.sayfa-404-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50Z' fill='none' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='1'/%3E%3C/svg%3E");
}

.sayfa-404-content {
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

.sayfa-404-icon {
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}

.sayfa-404-icon i {
    font-size: 56px;
    color: var(--secondary);
    animation: truckMove 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes truckMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(15px); }
}

.sayfa-404-yol {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.sayfa-404-content h1 {
    font-size: 140px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -5px;
}

.sayfa-404-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 14px;
    opacity: 0.95;
}

.sayfa-404-content > p {
    font-size: 15px;
    opacity: 0.65;
    max-width: 450px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.sayfa-404-butonlar {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.sayfa-404-btn-ana {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
}

.sayfa-404-btn-ana:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.sayfa-404-btn-iletisim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.sayfa-404-btn-iletisim:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-3px);
}

.sayfa-404-link p {
    font-size: 13px;
    opacity: 0.4;
    margin-bottom: 10px;
}

.sayfa-404-link a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.sayfa-404-link a:hover {
    color: var(--secondary);
}

@media (max-width: 767px) {
    .sayfa-404-content h1 {
        font-size: 90px;
    }
    
    .sayfa-404-content h2 {
        font-size: 20px;
    }
    
    .sayfa-404-icon i {
        font-size: 40px;
    }
}

/* ===== ALERT MESAJLARI ===== */
.alert-basarili {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.alert-hata {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}
