        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #e11d48;
            --primary-dark: #be123c;
            --primary-light: #ffe4ec;
            --accent: #0f172a;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            margin: 0;
            background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
            color: #1e293b;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .bg-circle:nth-child(1) {
            width: 600px;
            height: 600px;
            background: var(--gradient-1);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 400px;
            height: 400px;
            background: var(--gradient-2);
            bottom: -100px;
            right: -100px;
            animation-delay: 7s;
        }

        .bg-circle:nth-child(3) {
            width: 500px;
            height: 500px;
            background: var(--gradient-3);
            top: 50%;
            left: 50%;
            animation-delay: 14s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(50px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-50px, 50px) scale(0.9);
            }
        }

        /* TOPBAR */
        .topbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1040;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .topbar:hover {
            box-shadow: 0 6px 40px rgba(0, 0, 0, 0.12);
        }

        .top-icons a {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .top-icons a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: currentColor;
            opacity: 0;
            border-radius: 50%;
            transform: scale(0);
            transition: all 0.3s ease;
        }

        .top-icons a:hover::before {
            opacity: 0.1;
            transform: scale(1);
        }

        .top-icons a:hover {
            transform: translateY(-3px);
        }

        .logo-img {
            height: 64px;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .menu-btn {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .menu-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
        }

        /* HERO */
        .hero {
            padding: 100px 18px 80px;
            position: relative;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px) saturate(180%);
            border-radius: 32px;
            padding: 48px 36px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
            background-size: 200% 100%;
            animation: gradient-slide 3s linear infinite;
        }

        @keyframes gradient-slide {
            0% {
                background-position: 0% 0%;
            }

            100% {
                background-position: 200% 0%;
            }
        }

        .hero-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            border-radius: 50px;
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            color: #dc2626;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 24px;
            border: 2px solid #fecaca;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 900;
            color: #0f172a;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1e293b, #334155);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @media (min-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
        }

        .hero-sub {
            font-size: 1.15rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .pill-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 50px;
            background: linear-gradient(135deg, #ecfeff, #cffafe);
            color: #0e7490;
            font-size: 0.95rem;
            font-weight: 600;
            border: 2px solid #a5f3fc;
        }

        .call-box {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border-radius: 24px;
            padding: 28px 24px;
            margin-top: 32px;
            border: 2px solid #fecaca;
            position: relative;
            overflow: hidden;
        }

        .call-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            animation: shine 3s infinite;
        }

        @keyframes shine {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-25%, -25%);
            }
        }

        .call-box a.phone-link {
            font-size: 1.8rem;
            font-weight: 900;
            color: #dc2626;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .call-box a.phone-link:hover {
            color: #991b1b;
            transform: scale(1.05);
        }

        .btn-modern {
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-modern::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-modern:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-modern:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
        }

        .btn-call {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
        }

        /* SECTIONS */
        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin: 60px 0 24px;
            background: linear-gradient(135deg, #1e293b, #334155);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }

        .section-sub {
            text-align: center;
            color: #64748b;
            max-width: 720px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* CARDS */
        .card-soft {
            background: white;
            border-radius: 24px;
            padding: 32px 28px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .card-soft::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card-soft:hover::before {
            transform: scaleX(1);
        }

        .card-soft:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        .card-soft h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: #1e293b;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            padding: 6px 14px;
            border-radius: 50px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: #1d4ed8;
            margin-bottom: 12px;
            font-weight: 700;
            border: 2px solid #bfdbfe;
        }

        /* HIGHLIGHT BOXES */
        .highlight-box {
            border-radius: 24px;
            padding: 32px 28px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 2px solid;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .highlight-box:hover::before {
            opacity: 1;
        }

        .highlight-box:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .highlight-box:nth-child(1) {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-color: #fbbf24;
        }

        .highlight-box:nth-child(2) {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            border-color: #60a5fa;
        }

        .highlight-box:nth-child(3) {
            background: linear-gradient(135deg, #fae8ff, #f5d0fe);
            border-color: #e879f9;
        }

        .highlight-box strong {
            font-size: 1.3rem;
            display: block;
            margin-bottom: 12px;
            color: #1e293b;
        }

        /* CONTACT */
        .contact-card {
            background: white;
            border-radius: 28px;
            padding: 40px 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(0, 0, 0, 0.05);
        }

        .contact-card p {
            margin-bottom: 12px;
            font-size: 1.05rem;
            color: #475569;
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            color: #e2e8f0;
            padding: 32px 0;
            margin-top: 80px;
            border-top: 4px solid var(--primary);
        }

        footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--primary-light);
        }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* OFFCANVAS CUSTOM */
        .offcanvas {
            background: linear-gradient(180deg, #ffffff, #f8fafc);
        }

        .offcanvas-title {
            font-weight: 800;
            font-size: 1.5rem;
            color: #1e293b;
        }

        .offcanvas-body a {
            padding: 12px 16px;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: block;
            color: #334155;
            font-weight: 600;
            text-decoration: none;
        }

        .offcanvas-body a:hover {
            background: linear-gradient(135deg, var(--primary-light), #fecaca);
            color: var(--primary);
            transform: translateX(10px);
            text-decoration: none;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .hero-card {
                padding: 32px 24px;
            }
        }

        /* Masaüstü yatay menü */
        .desktop-nav {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(18px) saturate(180%);
            border-bottom: 1px solid rgba(148, 163, 184, 0.18);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        }

        .desktop-menu {
            list-style: none;
            margin: 0;
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
        }

        .desktop-menu>li>a,
        .desktop-menu>li>.dropdown-toggle-btn {
            font-weight: 600;
            font-size: 0.98rem;
            color: #0f172a;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .desktop-menu>li>a:hover,
        .desktop-menu>li>.dropdown-toggle-btn:hover {
            background: linear-gradient(135deg, #f9fafb, #e5e7eb);
            color: var(--primary-dark);
            box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
            transform: translateY(-1px);
        }

        .has-dropdown {
            position: relative;
        }

        .dropdown-panel {
            position: absolute;
            right: 0;
            top: 100%;
            margin-top: 10px;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18);
            padding: 16px 18px;
            min-width: 360px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 1050;
        }

        .has-dropdown:hover .dropdown-panel {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 6px;
        }

        .dropdown-grid a {
            display: block;
            padding: 8px 10px;
            border-radius: 12px;
            font-size: 0.9rem;
            color: #334155;
            text-decoration: none;
            transition: all 0.15s ease;
        }

        .dropdown-grid a:hover {
            background: linear-gradient(135deg, var(--primary-light), #fee2e2);
            color: var(--primary-dark);
            transform: translateY(-1px);
        }

        /* Mobil offcanvas açılır başlık */
        .offcanvas-collapse-toggle {
            background: linear-gradient(135deg, #eff6ff, #e0f2fe);
            border: none;
            border-radius: 14px;
            width: 100%;
            font-size: 0.9rem;
            color: #0f172a;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .offcanvas-collapse-toggle:hover {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        }

        .offcanvas-collapse-toggle .fa-chevron-down {
            transition: transform 0.2s ease;
        }

        .offcanvas-collapse-toggle[aria-expanded="true"] .fa-chevron-down {
            transform: rotate(180deg);
        }

        /* Mobilde altta sabit WhatsApp + Telefon barı */
.bottom-contact-bar {
    display: none; /* Varsayılan: gizli, sadece mobilde açacağız */
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px; /* Alttaki bar içeriğin üstüne binmesin diye */
    }

    .bottom-contact-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        padding: 8px 12px;
        background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(15,23,42,0.95));
        display: flex;
        gap: 8px;
    }

    .bottom-contact-btn {
        flex: 1;
        border-radius: 999px;
        padding: 10px 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: #f9fafb;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
        white-space: nowrap;
    }

    .bottom-contact-btn i {
        font-size: 1.1rem;
    }

    .bottom-contact-btn.call {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
    }

    .bottom-contact-btn.whatsapp {
        background: linear-gradient(135deg, #22c55e, #16a34a);
    }

    .bottom-contact-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
        opacity: 0.95;
    }
}
