:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-hover: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #f472b6 100%);
    --gradient2: linear-gradient(135deg, #19191a 0%, #27242e 50%, #000000 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: var(--dark-color);
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* ================================================
   SCROLL PROGRESS BAR
================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* ================================================
   FLOATING CONTACT WIDGET - SQUARE CONTAINER
================================================ */
.floating-contact-widget {
    position: fixed;
    right: -10px;
    bottom: 10%;
    /* transform: translateY(-50%); */
    z-index: 9999;
    background: white;
    padding: 10px;
    /* border-radius: 10px; */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
    opacity: 1 !important;
    visibility: visible !important;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.widget-contact-item {
    width: 45px;
    height: 45px;
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
}

    .widget-contact-item:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    /* WhatsApp - Green */
    .widget-contact-item.whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #1ea952 100%);
    }

    /* Phone - Blue */
    .widget-contact-item.phone {
        background: linear-gradient(135deg, #5b7ce6 0%, #4a6fd4 100%);
    }

    /* Email - Red */
    .widget-contact-item.email {
        background: linear-gradient(135deg, #d64545 0%, #c13838 100%);
    }

    /* Form - Purple */
    .widget-contact-item.form {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    /* Location - Orange */
    .widget-contact-item.location {
        background: linear-gradient(135deg, #d4941f 0%, #c28417 100%);
    }

    .widget-contact-item i {
        font-size: 1.5rem;
        color: white;
        transition: all 0.3s ease;
    }

    .widget-contact-item:hover i {
        transform: scale(1.15);
    }

    /* Pulse Animation */
    .widget-contact-item::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        /*   border-radius: 50%;*/
        background: inherit;
        animation: pulse-widget 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        opacity: 0.5;
        z-index: -1;
    }

@keyframes pulse-widget {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Tooltip on hover */
.widget-contact-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.widget-contact-item:hover::after {
    opacity: 1;
    right: 80px;
}

/* ================================================
   NAVBAR STYLES - MODERN & ENHANCED
================================================ */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

    .navbar.navbar-scrolled {
        background: rgba(255, 255, 255, 1) !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    }





.navbar-nav {
    gap: 0.5rem;
}

    .navbar-nav .nav-link {
        color: var(--dark-color);
        font-weight: 600;
        margin: 0 0.5rem;
        padding: 0.6rem 1.2rem;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 10px;
    }

        .navbar-nav .nav-link i {
            margin-right: 0.3rem;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
            background: rgba(99, 102, 241, 0.08);
        }

            .navbar-nav .nav-link:hover i {
                transform: translateX(3px);
            }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        /* Müşteri Girişi Link - Special Style */
        .navbar-nav .nav-link.customer-login {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 12px;
            color: var(--primary-color);
            font-weight: 700;
        }

            .navbar-nav .nav-link.customer-login:hover {
                background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
                border-color: var(--primary-color);
                transform: translateY(-2px);
            }

            .navbar-nav .nav-link.customer-login::after {
                display: none;
            }

.btn-talep {
    background: var(--gradient);
    color: white !important;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 0.5rem;
}

    .btn-talep::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gradient-hover);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .btn-talep:hover::before {
        left: 0;
    }

    .btn-talep:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
        color: white !important;
    }

    .btn-talep i,
    .btn-talep span {
        position: relative;
        z-index: 1;
    }

    .btn-talep::after {
        display: none;
    }

/* Navbar toggler için özel stil */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.3);
    }

    .navbar-toggler:hover {
        background: rgba(99, 102, 241, 0.1);
        transform: scale(1.05);
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236366f1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}




/* ================================================
   SWIPER HERO SLIDER STYLES
================================================ */

.hero-slider {
    height: calc(100vh - 65px);
    position: relative;
    margin-top: 65px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/* Slide Backgrounds */
.slide-bg,
.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.9);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(139, 92, 246, 0.75) 50%, rgba(236, 72, 153, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Slide Content */
.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Slider Button */
.btn-slider {
    background: white;
    color: var(--primary-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

    .btn-slider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: var(--gradient);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
        z-index: -1;
    }

    .btn-slider:hover::before {
        width: 400px;
        height: 400px;
    }

    .btn-slider:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        color: white !important;
    }

    .btn-slider i,
    .btn-slider span {
        position: relative;
        z-index: 1;
    }

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 24px;
        color: white;
        font-weight: bold;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: rgba(255, 255, 255, 0.4);
        border-color: white;
        transform: scale(1.1);
    }

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next {
    right: 30px;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {

    .alert-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .hero-slider {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .btn-slider {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 45px;
        height: 45px;
    }

        .swiper-button-prev:after,
        .swiper-button-next:after {
            font-size: 18px;
        }

    .swiper-button-prev {
        left: 15px;
    }

    .swiper-button-next {
        right: 15px;
    }


    * {
        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: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-slider {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}



/* ================================================
   WHY US SECTION
================================================ */
.why-us-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

    .why-us-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 40%;
        height: 150%;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
        border-radius: 50%;
        z-index: 0;
    }

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

    .section-title h2 {
        font-size: 3rem;
        font-weight: 800;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

    .section-title p {
        font-size: 1.2rem;
        color: #64748b;
        max-width: 600px;
        margin: 0 auto;
    }

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .feature-card:hover::before {
        opacity: 0.05;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-color);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ================================================
   PRICING SECTION
================================================ */
.pricing-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 30px 25px 0px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .pricing-card:hover::before {
        transform: scaleX(1);
    }

    .pricing-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25);
        border-color: var(--primary-color);
    }

    .pricing-card.featured {
        background: var(--gradient);
        color: white;
        transform: scale(1.05);
        border: none;
    }

        .pricing-card.featured:hover {
            transform: scale(1.08) translateY(-15px);
        }

        .pricing-card.featured .feature-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .pricing-card.featured h3,
        .pricing-card.featured .price,
        .pricing-card.featured li {
            color: white;
        }

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #fbbf24;
    color: #78350f;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.pricing-card.featured .price {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.price-period {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

    .pricing-features li {
        padding: 0.4rem 0;
        color: #64748b;
        font-weight: 500;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

        .pricing-features li:hover {
            padding-left: 5px;
        }

        .pricing-features li i {
            color: var(--primary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }

.pricing-card.featured .pricing-features li i {
    color: white;
}

.btn-pricing {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

    .btn-pricing::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .btn-pricing:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-pricing:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        color: white;
    }

.pricing-card.featured .btn-pricing {
    background: white;
    color: var(--primary-color);
}

    .pricing-card.featured .btn-pricing:hover {
        background: rgba(255, 255, 255, 0.95);
    }

/* ================================================
   COUNTER SECTION
================================================ */
.counter-section {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920') center/cover fixed;
    position: relative;
}

    .counter-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.92) 0%, rgba(139, 92, 246, 0.92) 50%, rgba(236, 72, 153, 0.92) 100%);
    }

    .counter-section .container {
        position: relative;
        z-index: 2;
    }

.counter-box {
    text-align: center;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

    .counter-box:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

.counter-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.counter-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.counter-label {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   CONTACT FORM SECTION - ENHANCED
================================================ */
.contact-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
}

.contact-info {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .contact-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

    .contact-info h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 2rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

    .contact-item:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .contact-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-right: 1.5rem;
        margin-top: 0.3rem;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .contact-item h5 {
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--dark-color);
    }

    .contact-item p {
        color: #64748b;
        margin: 0;
        line-height: 1.6;
    }

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .contact-form:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    }

    .contact-form h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 2rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .form-label i {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-color);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
        background: white;
    }

    .form-control:hover, .form-select:hover {
        border-color: var(--primary-color);
    }

.form-floating > label {
    color: #64748b;
}

.btn-submit {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .btn-submit:hover::before {
        width: 500px;
        height: 500px;
    }

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }

    .btn-submit i {
        position: relative;
        z-index: 1;
    }

/* Form Steps Indicator */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

    .form-steps::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #e2e8f0;
        z-index: 0;
    }

.form-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .form-step.active {
        background: var(--gradient);
        border-color: var(--primary-color);
        color: white;
        transform: scale(1.2);
    }

/* ================================================
   FOOTER
================================================ */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    }

    .footer h5 {
        font-weight: 800;
        margin-bottom: 1.5rem;
        font-size: 1.3rem;
        position: relative;
    }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

    .footer-logo img {
        max-width: 300px;
    }

.footer p {
    color: #94a3b8;
    line-height: 1.8;
}

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

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        position: relative;
        padding-left: 0;
    }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-links a i {
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover i {
            transform: translateX(3px);
        }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-links a:hover::before {
            opacity: 1;
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        .social-links a i {
            position: relative;
            z-index: 1;
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}
/* ================================================
   SCROLL TO TOP BUTTON
================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    opacity: 0;
    scale: 0.8;
    pointer-events: none;
}

    .scroll-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    }

    .scroll-top.show {
        opacity: 1;
        scale: 1;
        pointer-events: auto;
    }
/* ================================================
   ANIMATIONS
================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ================================================
   FAQ SECTION - HOME PAGE
================================================ */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-accordion {
    max-width: 100%;
}

.faq-item-home {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item-home:hover {
        border-color: var(--primary-color);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
        transform: translateY(-2px);
    }

.faq-question-home {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

    .faq-question-home::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: var(--gradient);
        transition: width 0.3s ease;
    }

.faq-item-home.active .faq-question-home::before {
    width: 4px;
}

.faq-question-home:hover {
    background: rgba(99, 102, 241, 0.03);
}

.faq-question-text-home {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    flex: 1;
    padding-right: 1rem;
}

.faq-icon-home {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

    .faq-icon-home i {
        color: var(--primary-color);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

.faq-item-home.active .faq-icon-home {
    background: var(--gradient);
    transform: rotate(180deg);
}

    .faq-item-home.active .faq-icon-home i {
        color: white;
    }

.faq-answer-home {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item-home.active .faq-answer-home {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer-home p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.faq-answer-home strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-question-home {
        padding: 1.2rem 1.5rem;
    }

    .faq-question-text-home {
        font-size: 1rem;
    }

    .faq-answer-home {
        padding: 0 1.5rem;
    }

    .faq-item-home.active .faq-answer-home {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}
/* ================================================
   RESPONSIVE STYLES
================================================ */
@media (max-width: 992px) {
    .floating-contact-widget {
        right: 0px;
    }

    .widget-menu {
        right: 70px;
        width: 280px;
    }

    .navbar-nav {
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        margin-top: 1rem;
    }

        .navbar-nav .nav-link {
            margin: 0.3rem 0;
            border-radius: 10px;
        }

            .navbar-nav .nav-link::after {
                display: none;
            }

    .btn-talep {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {

    .feature-icon {
        width: 55px;
        height: 55px;
    }
    .feature-card {
     
        border-radius: 5px;
        padding: 1rem;
    }

        .slide-content h1 {
            font-size: 2.5rem;
        }

        .slide-content p {
            font-size: 1.2rem;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .counter-number {
            font-size: 3rem;
        }

        .pricing-card.featured {
            transform: scale(1);
        }

        .navbar-nav .nav-link {
            margin: 0.5rem 0;
        }

        .floating-contact-widget {
            right: 0px;
            top: auto;
            bottom: 100px;
            transform: none;
        }

        .widget-menu {
            right: auto;
            left: 50%;
            transform: translateX(-50%);
            bottom: 80px;
            top: auto;
        }

        .widget-toggle {
            width: 55px;
            height: 55px;
        }

            .widget-toggle i {
                font-size: 1.5rem;
            }
    }

@media (max-width: 576px) {
    .widget-menu {
        width: calc(100vw - 30px);
        left: 15px;
        right: 15px;
        transform: none;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }
}
/* ================================================
   UTILITY CLASSES
================================================ */
.gradient-text {
    background: var(--gradient2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parallax-element {
    will-change: transform;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-5px);
    }

#talep-formu {
    scroll-margin-top: 100px;
}

#referanslar {
    scroll-margin-top: 110px;
}
/* Active Menu Style */
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 700;
    position: relative;
}

    .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: var(--gradient);
        border-radius: 2px;
        animation: slideIn 0.3s ease;
    }

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 30px;
        opacity: 1;
    }
}
/* Talep Formu butonu için özel durum */
.btn-talep.active::after {
    display: none;
}
/* Alert Container */
.alert-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    pointer-events: none;
}
/* Custom Alert */
.custom-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    backdrop-filter: blur(10px);
    border-left: 4px solid;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .custom-alert i:first-child {
        font-size: 24px;
        flex-shrink: 0;
    }

    .custom-alert span {
        flex: 1;
        font-size: 15px;
        font-weight: 500;
        color: #334155;
    }

.alert-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #64748b;
}

    .alert-close:hover {
        background: rgba(0, 0, 0, 0.05);
        transform: scale(1.1);
    }

    .alert-close i {
        font-size: 18px;
    }
/* Alert Types */
.alert-success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

    .alert-success i:first-child {
        color: #10b981;
    }

.alert-error {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

    .alert-error i:first-child {
        color: #ef4444;
    }

.alert-warning {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

    .alert-warning i:first-child {
        color: #f59e0b;
    }

.alert-info {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

    .alert-info i:first-child {
        color: #3b82f6;
    }

/* Footer Alt İletişim Items */
.altIletisim {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.altIletisim-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

    .altIletisim-item i {
        font-size: 16px;
        color: var(--primary);
        flex-shrink: 0;
    }

    .altIletisim-item a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .altIletisim-item:hover,
        .altIletisim-item a:hover {
            color: white;
            transform: translateX(5px);
        }

.navbar-brand img {
    max-width: 220px;
}
