/* ============================================ */
/* MAIN CSS - TÜM BÖLÜMLER BİRLEŞİK & OPTİMİZE */
/* Tekrar eden tanımlar birleştirildi */
/* ============================================ */

/* ============================================ */
/* 1. ROOT VARIABLES & RESETS */
/* ============================================ */
:root {
    --digiturk-primary: #E94B35;
    --digiturk-secondary: #FF6B4A;
    --digiturk-dark: #1A1D29;
    --digiturk-navy: #2A2F45;
    --digiturk-light: #F8F9FC;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--digiturk-dark);
    overflow-x: hidden;
    background: var(--digiturk-light);
}

.nav-link.active {
    border-bottom: 1px solid var(--digiturk-primary) !important;
}

    .nav-link.active:after {
        content: '';
    }
/* ============================================ */
/* 2. GLOBAL ANIMATIONS */
/* ============================================ */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes loading {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-5%, 5%) rotate(5deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }

    10%, 30% {
        transform: rotate(-10deg);
    }

    20%, 40% {
        transform: rotate(10deg);
    }
}
/* ============================================ */
/* 3. PAGE LOADER */
/* ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--digiturk-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .page-loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(233, 75, 53, 0.1);
    border-top-color: var(--digiturk-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

.loader-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.loader-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    animation: pulse-text 1.5s ease-in-out infinite;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 1.5rem auto 0;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--digiturk-primary), var(--digiturk-secondary));
    border-radius: 2px;
    animation: loading 2s ease-in-out;
}
/* ============================================ */
/* 4. HERO SECTION */
/* ============================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #2A2F45 0%, #1A1D29 100%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle at 30% 50%, rgba(233, 75, 53, 0.15) 0%, transparent 50%);
        animation: floatBackground 20s ease-in-out infinite;
    }

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 50px, var(--digiturk-primary) 50px, var(--digiturk-primary) 51px);
}
/* ============================================ */
/* HERO SAĞ TARAF - SADECE RESİM */
/* Mevcut CSS'in SONUNA ekle */
/* ============================================ */
/* Hero Image Container */
.hero-image {
    position: relative;
    z-index: 2;
    animation: heroImageFade 1s ease;
}

@keyframes heroImageFade {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Image Styling */
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: heroImageFloat 4s ease-in-out infinite;
}
/* Float Animation */
@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}
/* Hover Effect */
.hero-image img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 991px) {
    .hero-image {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-image {
        margin-top: 2rem;
    }

        .hero-image img {
            border-radius: 15px;
        }
}
/* ============================================ */
/* 5. TOP BAR & NAVIGATION */
/* ============================================ */
.top-bar {
    background: rgba(26, 29, 41, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(233, 75, 53, 0.2);
    position: relative; /* Static - sabit değil */
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    display: flex;
    gap: 2rem;
}

    .contact-info i {
        color: var(--digiturk-primary);
        margin-right: 0.5rem;
    }

    .contact-info a {
        color: #fff;
        text-decoration: none;
    }

.social-links a {
    color: #fff;
    margin-left: 1rem;
    transition: color 0.3s;
}

    .social-links a:hover {
        color: var(--digiturk-primary);
    }
/* Sticky Navigation */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background: transparent !important;
    position: relative; /* Başlangıçta relative */
    z-index: 1000;
}

    .navbar.scrolled {
        position: fixed; /* Scroll sonrası fixed */
        top: 0;
        left: 0;
        right: 0;
        background: rgba(26, 29, 41, 0.95) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        padding: 1rem 0;
        animation: slideDown 0.3s ease;
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--digiturk-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 60%;
    }
/* ============================================ */
/* 6. HERO CONTENT */
/* ============================================ */
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

    .hero-title .highlight {
        background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(233, 75, 53, 0.4);
        color: white;
    }
/* Hero Image Area */
.hero-image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Animated Background Circle */
.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    background: linear-gradient(135deg, rgba(233, 75, 53, 0.2), rgba(255, 107, 74, 0.15));
    border-radius: 50%;
    animation: hero-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes hero-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}
/* Main Image Container */
.hero-image-container {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}
/* Stats Card */
.hero-stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(233, 75, 53, 0.4);
    z-index: 3;
    animation: hero-stats-float 3s ease-in-out infinite;
}

@keyframes hero-stats-float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-stats-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.hero-stats-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 1rem 0;
    font-weight: 500;
}

.hero-user-avatars {
    display: flex;
}

.hero-user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--digiturk-primary);
}

    .hero-user-avatar:first-child {
        margin-left: 0;
    }

.hero-more-users {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--digiturk-primary);
}
/* Floating Icons */
.hero-floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    animation: hero-icon-float 6s ease-in-out infinite;
}

    .hero-floating-icon:nth-child(1) {
        top: 10%;
        left: 10%;
        font-size: 60px;
        animation-delay: 0s;
    }

    .hero-floating-icon:nth-child(2) {
        bottom: 20%;
        right: 5%;
        font-size: 50px;
        animation-delay: 2s;
    }

@keyframes hero-icon-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.2;
    }
}
/* ============================================ */
/* 7. FIXED BUTTONS (WhatsApp, Scroll, Emergency) */
/* ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }

.scroll-top {
    position: fixed;
    bottom: 190px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(233, 75, 53, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    border: none;
}

    .scroll-top.visible {
        opacity: 1;
        visibility: visible;
        animation: slideInRight 0.5s ease;
    }

    .scroll-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(233, 75, 53, 0.5);
    }
/*.emergency-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.emergency-btn {
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(233, 75, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 75, 53, 0.5);
}

.emergency-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--digiturk-primary);
    font-size: 1.5rem;
    animation: ring 2s ease-in-out infinite;
}

.emergency-text span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.emergency-text strong {
    display: block;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}*/
/* ============================================ */
/* 8. HİZMETLER SECTION */
/* ============================================ */
.hizmetler1-section {
    background: #F8F9FC;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hizmetler1-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--digiturk-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .hizmetler1-badge i {
        font-size: 1.2rem;
    }

.hizmetler1-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--digiturk-dark);
    margin: 0;
}

.hizmetler1-highlight {
    color: var(--digiturk-primary);
    position: relative;
    display: inline-block;
}

    .hizmetler1-highlight::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: var(--digiturk-primary);
        opacity: 0.2;
        border-radius: 4px;
    }

.hizmetler1-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .hizmetler1-item:hover {
        transform: translateX(10px);
        border-color: var(--digiturk-primary);
        box-shadow: 0 10px 30px rgba(233, 75, 53, 0.1);
    }

    .hizmetler1-item.hizmetler1-text-end:hover {
        transform: translateX(-10px);
    }

.hizmetler1-icon {
    min-width: 70px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(233, 75, 53, 0.1), rgba(255, 107, 74, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .hizmetler1-icon i {
        font-size: 2rem;
        color: var(--digiturk-primary);
    }

.hizmetler1-item:hover .hizmetler1-icon {
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
    transform: scale(1.1) rotate(5deg);
}

    .hizmetler1-item:hover .hizmetler1-icon i {
        color: white;
    }

.hizmetler1-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--digiturk-dark);
    margin-bottom: 0.5rem;
}

.hizmetler1-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.hizmetler1-showcase {
    position: relative;
    display: inline-block;
}

.hizmetler1-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(233, 75, 53, 0.15), rgba(255, 107, 74, 0.15));
    border-radius: 50%;
    z-index: 1;
    animation: hizmetler1-pulse 3s ease-in-out infinite;
}

@keyframes hizmetler1-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.hizmetler1-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: hizmetler1-float 4s ease-in-out infinite;
}

@keyframes hizmetler1-float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}
/* ============================================ */
/* 9. KAMPANYALAR SECTION */
/* ============================================ */
.kampanyalar1-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1D29 0%, #2A2F45 100%);
}

.kampanyalar1-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(233, 75, 53, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 107, 74, 0.1) 0%, transparent 50%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="30" cy="60" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="70" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="80" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover, cover, 200px 200px;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
}

.kampanyalar1-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 50px, #E94B35 50px, #E94B35 51px);
    z-index: 1;
}

.kampanyalar1-content {
    position: relative;
    z-index: 2;
}

.kampanyalar1-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(233, 75, 53, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #E94B35;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(233, 75, 53, 0.2);
    margin-bottom: 1.5rem;
}

    .kampanyalar1-badge i {
        font-size: 1.2rem;
    }

.kampanyalar1-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.kampanyalar1-highlight {
    color: #E94B35;
    position: relative;
    display: inline-block;
}

.kampanyalar1-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.kampanyalar1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kampanyalar1-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

    .kampanyalar1-item:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 50px rgba(233, 75, 53, 0.4);
        z-index: 10;
    }

.kampanyalar1-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.kampanyalar1-item:hover .kampanyalar1-image {
    transform: scale(1.1);
}

.kampanyalar1-campaign-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #E94B35, #FF6B4A);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(233, 75, 53, 0.4);
    z-index: 3;
    animation: kampanyalar1-pulse 2s ease-in-out infinite;
}

@keyframes kampanyalar1-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.kampanyalar1-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.kampanyalar1-item:hover .kampanyalar1-overlay {
    transform: translateY(0);
    opacity: 1;
}

.kampanyalar1-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.kampanyalar1-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.kampanyalar1-overlay-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

    .kampanyalar1-overlay-meta i {
        color: #E94B35;
        margin-right: 0.5rem;
    }

.kampanyalar1-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(233, 75, 53, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    z-index: 4;
}

.kampanyalar1-item:hover .kampanyalar1-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

.kampanyalar1-view-all {
    text-align: center;
    margin-top: 3rem;
}

.kampanyalar1-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #E94B35, #FF6B4A);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 75, 53, 0.3);
    border: none;
    cursor: pointer;
}

    .kampanyalar1-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(233, 75, 53, 0.5);
        color: white;
    }

.kampanyalar1-btn-arrow {
    transition: transform 0.3s ease;
}

.kampanyalar1-btn:hover .kampanyalar1-btn-arrow {
    transform: translateX(10px);
}

.kampanyalar1-floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: kampanyalar1-float 6s ease-in-out infinite;
}

    .kampanyalar1-floating-icon:nth-child(1) {
        top: 10%;
        left: 5%;
        font-size: 80px;
        animation-delay: 0s;
    }

    .kampanyalar1-floating-icon:nth-child(2) {
        top: 60%;
        right: 10%;
        font-size: 60px;
        animation-delay: 2s;
    }

    .kampanyalar1-floating-icon:nth-child(3) {
        bottom: 15%;
        left: 15%;
        font-size: 50px;
        animation-delay: 4s;
    }

@keyframes kampanyalar1-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
}
/* ============================================ */
/* 10. SSS SECTION */
/* ============================================ */
.sss1-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.sss1-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(233, 75, 53, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--digiturk-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

    .sss1-badge i {
        font-size: 1.2rem;
    }

.sss1-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--digiturk-dark);
    margin-bottom: 0.5rem;
}

.sss1-highlight {
    color: var(--digiturk-primary);
}

.sss1-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.sss1-accordion {
    max-width: 900px;
}

.sss1-item {
    background: var(--digiturk-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .sss1-item:hover {
        border-color: var(--digiturk-primary);
        box-shadow: 0 5px 20px rgba(233, 75, 53, 0.1);
    }

    .sss1-item.active {
        background: white;
        border-color: var(--digiturk-primary);
        box-shadow: 0 10px 30px rgba(233, 75, 53, 0.15);
    }

.sss1-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.sss1-item.active .sss1-header {
    padding-bottom: 1rem;
}

.sss1-icon-btn {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: var(--digiturk-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.sss1-item.active .sss1-icon-btn {
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
}

.sss1-icon-btn i {
    transition: transform 0.4s ease;
    position: absolute;
}

.sss1-item.active .sss1-icon-btn i {
    transform: rotate(45deg);
}

.sss1-question {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--digiturk-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.sss1-item.active .sss1-question {
    color: var(--digiturk-primary);
}

.sss1-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.sss1-item.active .sss1-body {
    max-height: 500px;
    opacity: 1;
}

.sss1-body-content {
    padding: 0 2rem 2rem 7.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.sss1-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sss1-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    background: linear-gradient(135deg, rgba(233, 75, 53, 0.1), rgba(255, 107, 74, 0.05));
    border-radius: 50%;
    animation: sss1-pulse 3s ease-in-out infinite;
}

@keyframes sss1-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.sss1-illustration-icon {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: var(--digiturk-primary);
    animation: sss1-float 4s ease-in-out infinite;
}

@keyframes sss1-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.sss1-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--digiturk-primary), var(--digiturk-secondary));
    opacity: 0.1;
    animation: sss1-float-slow 6s ease-in-out infinite;
}

    .sss1-decoration:nth-child(1) {
        top: 10%;
        right: 10%;
        animation-delay: 0s;
    }

    .sss1-decoration:nth-child(2) {
        bottom: 20%;
        left: 5%;
        animation-delay: 2s;
    }

    .sss1-decoration:nth-child(3) {
        top: 50%;
        right: 5%;
        width: 60px;
        height: 60px;
        animation-delay: 4s;
    }

@keyframes sss1-float-slow {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.sss1-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--digiturk-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(233, 75, 53, 0.3);
    z-index: 10;
}
/* ============================================ */
/* 11. WHATSAPP BLOK SECTION */
/* ============================================ */
.whatsappBlok {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-dark) 100%);
    overflow: hidden;
}

.whatsappBlok-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

    .whatsappBlok-bg-pattern::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.1) 50px, rgba(255, 255, 255, 0.1) 100px);
        animation: whatsappBlok-slide 20s linear infinite;
    }

@keyframes whatsappBlok-slide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.whatsappBlok-floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: whatsappBlok-float 6s ease-in-out infinite;
}

    .whatsappBlok-floating-icon:nth-child(1) {
        top: 10%;
        left: 5%;
        font-size: 80px;
        animation-delay: 0s;
    }

    .whatsappBlok-floating-icon:nth-child(2) {
        top: 60%;
        right: 10%;
        font-size: 60px;
        animation-delay: 2s;
    }

    .whatsappBlok-floating-icon:nth-child(3) {
        bottom: 15%;
        left: 15%;
        font-size: 50px;
        animation-delay: 4s;
    }

@keyframes whatsappBlok-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
}

.whatsappBlok-content {
    position: relative;
    z-index: 3;
}

.whatsappBlok-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.whatsappBlok-text {
    flex: 1;
    min-width: 300px;
}

.whatsappBlok-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: whatsappBlok-pulse 2s ease-in-out infinite;
}

@keyframes whatsappBlok-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.whatsappBlok-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.whatsappBlok-highlight {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsappBlok-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.whatsappBlok-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.whatsappBlok-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
}

    .whatsappBlok-feature i {
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
    }

.whatsappBlok-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.whatsappBlok-main-icon {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsappBlok-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    animation: whatsappBlok-pulse-ring 2s ease-out infinite;
}

    .whatsappBlok-pulse-ring:nth-child(1) {
        animation-delay: 0s;
    }

    .whatsappBlok-pulse-ring:nth-child(2) {
        animation-delay: 0.5s;
    }

    .whatsappBlok-pulse-ring:nth-child(3) {
        animation-delay: 1s;
    }

@keyframes whatsappBlok-pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsappBlok-icon-circle {
    position: relative;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: whatsappBlok-bounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

    .whatsappBlok-icon-circle:hover {
        transform: scale(1.1);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    }

@keyframes whatsappBlok-bounce {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.whatsappBlok-icon-circle i {
    font-size: 70px;
    color: var(--whatsapp-green);
    animation: whatsappBlok-shake 3s ease-in-out infinite;
}

@keyframes whatsappBlok-shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    10%, 30%, 50% {
        transform: rotate(-10deg);
    }

    20%, 40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }
}

.whatsappBlok-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--whatsapp-green);
    padding: 1.5rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 3px solid white;
    position: relative;
    overflow: hidden;
}

    .whatsappBlok-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .whatsappBlok-btn:hover::before {
        width: 400px;
        height: 400px;
    }

    .whatsappBlok-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        color: var(--whatsapp-dark);
    }

    .whatsappBlok-btn i,
    .whatsappBlok-btn span {
        position: relative;
        z-index: 1;
    }

    .whatsappBlok-btn i {
        font-size: 1.75rem;
    }

.whatsappBlok-btn-arrow {
    transition: transform 0.3s ease;
}

.whatsappBlok-btn:hover .whatsappBlok-btn-arrow {
    transform: translateX(10px);
}

.whatsappBlok-phone {
    text-align: center;
    color: white;
}

.whatsappBlok-phone-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.whatsappBlok-phone-number {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color:#fff;
    text-decoration:none;
}
/* ============================================ */
/* 12. FOOTER SECTION */
/* ============================================ */
.footer1-section {
    background: var(--digiturk-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer1-top {
    background: linear-gradient(135deg, #6e4bab, #6f4bab);
    padding: 2rem 0;
    position: relative;
}

    .footer1-top::before {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: inherit;
        transform: skewY(-2deg);
    }

.footer1-newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer1-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer1-logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.footer1-logo-text {
    display: flex;
    flex-direction: column;
}

    .footer1-logo-text h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: white;
        margin: 0;
        line-height: 1;
    }

    .footer1-logo-text span {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-top: 0.25rem;
    }

.footer1-newsletter {
    flex: 1;
    max-width: 600px;
}

.footer1-newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer1-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

    .footer1-newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.footer1-newsletter-btn {
    background: white;
    color: var(--digiturk-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .footer1-newsletter-btn:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

.footer1-emergency {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer1-emergency-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--digiturk-primary);
    font-size: 1.5rem;
    animation: footer1-ring 2s ease-in-out infinite;
}

@keyframes footer1-ring {
    0%, 100% {
        transform: rotate(0deg);
    }

    10%, 30% {
        transform: rotate(-10deg);
    }

    20%, 40% {
        transform: rotate(10deg);
    }
}

.footer1-emergency-text {
    color: white;
}

    .footer1-emergency-text span {
        display: block;
        font-size: 0.85rem;
        opacity: 0.9;
    }

    .footer1-emergency-text strong {
        display: block;
        font-size: 1.25rem;
        margin-top: 0.25rem;
    }

.footer1-main {
    padding: 4rem 0 2rem;
}

.footer1-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

    .footer1-column-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--digiturk-primary);
        border-radius: 2px;
    }

.footer1-about-text {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer1-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--digiturk-primary);
    border: 2px solid var(--digiturk-primary);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .footer1-cta-btn:hover {
        background: var(--digiturk-primary);
        color: white;
        transform: translateX(5px);
    }

.footer1-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer1-links li {
        margin-bottom: 1rem;
    }

    .footer1-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

        .footer1-links a::before {
            content: '\F285';
            font-family: 'bootstrap-icons';
            font-size: 0.85rem;
            color: var(--digiturk-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer1-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }

            .footer1-links a:hover::before {
                opacity: 1;
            }

.footer1-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.footer1-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .footer1-gallery-item:hover {
        transform: scale(1.1);
        z-index: 10;
    }

    .footer1-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .footer1-gallery-item:hover img {
        transform: scale(1.2);
    }

.footer1-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 75, 53, 0.9), rgba(255, 107, 74, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer1-gallery-item:hover .footer1-gallery-overlay {
    opacity: 1;
}

.footer1-gallery-overlay i {
    color: white;
    font-size: 1.5rem;
}

.footer1-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer1-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

    .footer1-copyright a {
        color: var(--digiturk-primary);
        text-decoration: none;
        font-weight: 600;
    }

        .footer1-copyright a:hover {
            text-decoration: underline;
        }

/* Footer Bottom Content */
.footer1-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer1-copyright {
    margin: 0;
    text-align: left;
}

.footer1-developer {
    margin: 0;
    text-align: right;
}

    .footer1-developer a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        padding-bottom: 2px;
    }

        .footer1-developer a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

        .footer1-developer a:hover {
            color: white;
        }

            .footer1-developer a:hover::after {
                width: 100%;
            }


/* ============================================ */
/* 13. RESPONSIVE - GLOBAL */
/* ============================================ */
@media (max-width: 991px) {
    .hizmetler1-title,
    .kampanyalar1-title,
    .sss1-title {
        font-size: 2.5rem;
    }



    .hizmetler1-item.hizmetler1-text-end {
        text-align: left !important;
        flex-direction: row;
    }

        .hizmetler1-item.hizmetler1-text-end .hizmetler1-content {
            text-align: left !important;
        }

    .hizmetler1-circle {
        width: 300px;
        height: 300px;
    }

    .sss1-illustration {
        margin-top: 3rem;
    }

    .sss1-illustration-icon {
        width: 250px;
        height: 250px;
        font-size: 120px;
    }

    .whatsappBlok {
        padding: 3rem 0;
    }

    .whatsappBlok-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .whatsappBlok-text {
        min-width: auto;
    }

    .whatsappBlok-features {
        justify-content: center;
    }

    .whatsappBlok-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer1-newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer1-newsletter {
        width: 100%;
    }

    .footer1-main {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer1-links li {
        margin-bottom: 5px;
    }
    .hero-badge {
 
        margin-bottom: 1rem;
    }

        .footer1-copyright {
            text-align: center;
        }

        .footer1-developer {
            text-align: center;
            font-size: 13px;
            width: 100%;
        }

        .scroll-indicator {
            bottom: -15px !important;
        }

        .kampanyalar1-grid {
            grid-template-columns: repeat(1, 1fr);
        }

        .top-bar {
            position: relative; /* Mobilde de static */
        }

        .navbar {
            position: relative; /* Mobilde başlangıçta relative */
        }

            .navbar.scrolled {
                position: fixed; /* Scroll'da fixed */
            }

        .hero-content {
            padding-top: 3rem;
            text-align: center;
        }

        .hero-image-area {
            margin-top: 3rem;
        }

        .hero-stats-card {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 2rem;
        }

        .hero-floating-icon {
            display: none;
        }

        .contact-info {
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.8rem;
        }

        .emergency-btn {
            padding: 1rem 1.5rem;
        }

        .scroll-top {
            bottom: 140px;
            right: 20px;
            width: 45px;
            height: 45px;
            font-size: 1.25rem;
        }

        .whatsapp-float {
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            font-size: 1.75rem;
        }



     
    /* Genel Overflow Kontrolü */
    * {
        box-sizing: border-box;
    }

    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100%;
    }

    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100%;
        position: relative;
    }

    /* Container Kontrolü */
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        overflow-x: hidden;
        max-width: 100%;
    }


    /* AOS Animasyon Kontrolü */
    [data-aos] {
        pointer-events: auto;
    }

    [data-aos="fade-left"],
    [data-aos="fade-right"],
    [data-aos="fade-up"],
    [data-aos="fade-down"] {
        transition-property: opacity, transform !important;
    }

    /* Section Kontrolü */
    section {
        overflow-x: hidden;
        max-width: 100%;
        position: relative;
    }

    /* Navbar Sabit Pozisyon */
    .navbar {
        max-width: 100vw;
        overflow-x: hidden;
    }


    }

@media (max-width: 767px) {
    .hizmetler1-section,
    .kampanyalar1-section,
    .sss1-section {
        padding: 3rem 0;
    }

    .hizmetler1-title,
    .kampanyalar1-title,
    .sss1-title {
        font-size: 2rem;
    }

    .hizmetler1-item {
        padding: 1.5rem;
    }

    .hizmetler1-icon {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }

        .hizmetler1-icon i {
            font-size: 1.5rem;
        }

    .hizmetler1-circle {
        width: 250px;
        height: 250px;
    }



    .kampanyalar1-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    }

    .kampanyalar1-floating-icon {
        display: none;
    }

    .sss1-header {
        padding: 1.5rem 1.5rem;
        gap: 1rem;
    }

    .sss1-icon-btn {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .sss1-question {
        font-size: 1rem;
    }

    .sss1-body-content {
        padding: 0 1.5rem 1.5rem 5.5rem;
        font-size: 0.95rem;
    }

    .sss1-illustration-icon {
        width: 200px;
        height: 200px;
        font-size: 100px;
    }

    .sss1-decoration {
        display: none;
    }

    .whatsappBlok {
        padding: 2.5rem 0;
    }

    .whatsappBlok-title {
        font-size: 2rem;
    }

    .whatsappBlok-main-icon {
        width: 150px;
        height: 150px;
    }

    .whatsappBlok-icon-circle {
        width: 120px;
        height: 120px;
    }

        .whatsappBlok-icon-circle i {
            font-size: 60px;
        }

    .whatsappBlok-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .whatsappBlok-floating-icon {
        display: none;
    }

    .whatsappBlok-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer1-top {
        padding: 1.5rem 0;
    }

    .footer1-newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        gap: 0;
    }

    .footer1-newsletter-input {
        padding: 1rem;
    }

    .footer1-newsletter-btn {
        border-radius: 15px;
        padding: 1rem;
    }

    .footer1-emergency {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .footer1-column-title {
        font-size: 1.25rem;
    }

    .footer1-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* HERO OWL CAROUSEL SLIDER STYLES */
/* ============================================ */
/* Slider Wrapper */
.hero-slider-wrapper {
    position: relative;
    z-index: 2;
}
/* Owl Carousel Genel */
.hero-owl-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
/* Slide Item */
.hero-slide-item {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
/* Resim Slide */
.hero-slide-image {
    width: 100%;
    height: 100%;
}

    .hero-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
/* HTML5 Video Slide */
.hero-slide-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(233, 75, 53, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-video-play-btn:hover {
        background: var(--digiturk-primary);
        transform: translate(-50%, -50%) scale(1.1);
    }
/* YouTube Video Slide */
.hero-slide-youtube {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-youtube-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #000;
}

    .hero-youtube-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-youtube-placeholder:hover .hero-youtube-play-btn {
    color: var(--digiturk-primary);
    transform: translate(-50%, -50%) scale(1.1);
}
/* Owl Navigation Arrows */
.hero-owl-slider .owl-nav button.owl-prev,
.hero-owl-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(233, 75, 53, 0.8) !important;
    border-radius: 50%;
    color: white !important;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-owl-slider .owl-nav button.owl-prev {
    left: 20px;
}

.hero-owl-slider .owl-nav button.owl-next {
    right: 20px;
}

    .hero-owl-slider .owl-nav button.owl-prev:hover,
    .hero-owl-slider .owl-nav button.owl-next:hover {
        background: var(--digiturk-primary) !important;
        transform: translateY(-50%) scale(1.1);
    }
/* Owl Dots */
.hero-owl-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-owl-slider .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .hero-owl-slider .owl-dot.active {
        background: var(--digiturk-primary) !important;
        width: 30px;
        border-radius: 6px;
    }
/* Responsive */
@media (max-width: 992px) {
    .hero-slide-item {
        height: 400px;
    }

    .hero-owl-slider .owl-nav button.owl-prev,
    .hero-owl-slider .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-youtube-play-btn {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .hero-slide-item {
        height: 300px;
    }

    .hero-owl-slider .owl-nav button.owl-prev {
        left: 10px;
    }

    .hero-owl-slider .owl-nav button.owl-next {
        right: 10px;
    }

    .hero-video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-youtube-play-btn {
        font-size: 3rem;
    }
}



/* Footer Keywords */
.footer1-keywords {
    flex: 1;
    /*    max-width: 600px;*/
}


.footer1-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer1-keyword-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .footer1-keyword-link:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .footer1-keyword-link i {
        font-size: 0.85rem;
        opacity: 0.8;
    }

/* Responsive */
@media (max-width: 768px) {
    .footer1-newsletter-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .footer1-keywords {
        max-width: 100%;
    }

    .footer1-keywords-list {
        gap: 0.5rem;
    }

    .footer1-keyword-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}


/* Hakkımızda Hero Section */
.hakkimizda-hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    overflow: hidden;
    height: 360px;
}

/* Animated Background */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(40px, 10px) rotate(270deg);
    }
}

/* Animated Waves */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat-x;
    animation: wave 15s linear infinite;
}

.wave-2 {
    bottom: -10px;
    opacity: 0.5;
    animation: wave 20s linear infinite reverse;
}

.wave-3 {
    bottom: -20px;
    opacity: 0.3;
    animation: wave 25s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s infinite;
}

    .particle:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        left: 20%;
        animation-delay: 1s;
    }

    .particle:nth-child(3) {
        left: 30%;
        animation-delay: 2s;
    }

    .particle:nth-child(4) {
        left: 40%;
        animation-delay: 3s;
    }

    .particle:nth-child(5) {
        left: 50%;
        animation-delay: 4s;
    }

    .particle:nth-child(6) {
        left: 60%;
        animation-delay: 5s;
    }

    .particle:nth-child(7) {
        left: 70%;
        animation-delay: 6s;
    }

    .particle:nth-child(8) {
        left: 80%;
        animation-delay: 7s;
    }

    .particle:nth-child(9) {
        left: 90%;
        animation-delay: 8s;
    }

    .particle:nth-child(10) {
        left: 15%;
        animation-delay: 9s;
    }

    .particle:nth-child(11) {
        left: 25%;
        animation-delay: 1.5s;
    }

    .particle:nth-child(12) {
        left: 35%;
        animation-delay: 2.5s;
    }

    .particle:nth-child(13) {
        left: 45%;
        animation-delay: 3.5s;
    }

    .particle:nth-child(14) {
        left: 55%;
        animation-delay: 4.5s;
    }

    .particle:nth-child(15) {
        left: 65%;
        animation-delay: 5.5s;
    }

    .particle:nth-child(16) {
        left: 75%;
        animation-delay: 6.5s;
    }

    .particle:nth-child(17) {
        left: 85%;
        animation-delay: 7.5s;
    }

    .particle:nth-child(18) {
        left: 95%;
        animation-delay: 8.5s;
    }

    .particle:nth-child(19) {
        left: 5%;
        animation-delay: 9.5s;
    }

    .particle:nth-child(20) {
        left: 50%;
        animation-delay: 10s;
    }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Hero Overlay */
.hakkimizda-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*    background: rgba(0, 0, 0, 0.3);*/
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badge-pulse 2s infinite;
}

    .hero-badge i {
        font-size: 1.5rem;
    }

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #fff, #f0f0f0, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.75rem;
    color: white;
    transition: all 0.3s ease;
    animation: feature-bounce 2s infinite;
}

.hero-feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@keyframes feature-bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    z-index: 2;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .floating-shape {
        opacity: 0.5;
    }

    .shape-1, .shape-4 {
        width: 200px;
        height: 200px;
    }

    .shape-2, .shape-3, .shape-5 {
        width: 120px;
        height: 120px;
    }
}

#hizmetler {
    scroll-margin-top: 70px;
}


/* Konum Menüsü - Özel Vurgulu Tasarım */
#menuKonum1 {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

#menuKonum1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#menuKonum1:hover::before {
    left: 100%;
}

#menuKonum1:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
    color: white !important;
}

#menuKonum1 i {
    font-size: 1.2rem;
    animation: location-bounce 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.7), 0 0 30px rgba(102, 126, 234, 0.3);
    }
}

@keyframes location-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Mobil menüde düzenleme */
@media (max-width: 991px) {
    #menuKonum1 {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
}