        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }

        .faq-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 1.125rem;
            color: #1e293b;
            user-select: none;
            transition: color 0.3s ease;
        }

        .faq-header:hover {
            color: #10B981;
        }

        .faq-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f1f5f9;
            color: #64748b;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: #10B981;
            color: white;
            transform: rotate(180deg);
        }

        .faq-item.active .faq-header {
            color: #10B981;
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
            padding: 0 1.5rem;
            color: #475569;
            line-height: 1.6;
        }

        .faq-item.active .faq-body {
            padding-bottom: 1.5rem;
        }

        /* .custom-toast {
                opacity: 1;  Saydamlık olmadan 
                background-color: #f8f9fa;
                border: none;
            }*/

        /* Enhanced Contact Modal Rewrite */
        @media (min-width: 992px) {
            .contact-modal.modal-enhanced .modal-dialog {
                max-width: 480px;
            }
        }

        .contact-modal.modal-enhanced .modal-content {
            border-radius: 24px;
            border: none;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            background: #ffffff;
            padding: 0.5rem;
        }

        .contact-modal.modal-enhanced .modal-header {
            border-bottom: none;
            padding: 1.5rem 1.5rem 1rem 1.5rem !important;
        }

        .contact-modal.modal-enhanced .modal-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1E293B;
            letter-spacing: -0.02em;
        }

        .contact-modal.modal-enhanced .btn-close {
            opacity: 0.5;
            background-size: 0.8em;
        }

        .contact-modal.modal-enhanced .btn-close:hover {
            opacity: 1;
        }

        .contact-modal.modal-enhanced .modal-body {
            padding: 0 1.5rem 1.5rem 1.5rem !important;
        }

        .contact-card-modern {
            display: flex;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 24px;
            text-decoration: none;
            color: inherit;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .contact-icon-modern {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(16, 185, 129, 0.05);
            /* Light green tint */
            color: #10B981;
            flex-shrink: 0;
            font-size: 1.5rem;
        }

        .whatsapp-icon-bg {
            background: rgba(37, 211, 102, 0.1);
            /* WhatsApp green tint */
            color: #25D366;
        }

        .contact-card-modern .c-label {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            font-weight: 600;
            color: #94A3B8;
            text-transform: uppercase;
            margin-bottom: 0.15rem;
        }

        .contact-card-modern .c-val {
            display: block;
            font-weight: 500;
            font-size: 1.2rem;
            color: #1E293B;
        }

        .contact-card-modern:hover {
            border-color: #10B981;
            background: #f8fafc;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
            color: inherit;
        }

        .hours-block-modern {
            background: #10B981;
            color: white;
            padding: 1.5rem;
            border-radius: 24px;
            text-align: center;
            margin-top: 1rem;
            box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
        }

        .hours-block-modern .label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .hours-block-modern .value {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        @media (max-width: 768px) {
            .contact-modal.modal-enhanced .modal-dialog.modal-dialog-centered {
                padding-left: 0.5rem;
                padding-right: 0.5rem;
                padding-bottom: 2rem;
            }

            .contact-modal.modal-enhanced .modal-content {
                padding: 1rem;
            }

            .contact-card-modern {
                padding: 1rem 1.25rem;
                border-radius: 20px;
            }

            .contact-icon-modern {
                width: 3rem;
                height: 3rem;
                font-size: 1.25rem;
            }

            .contact-card-modern .c-val {
                font-size: 1.1rem;
            }

            .hours-block-modern {
                padding: 1.25rem;
                border-radius: 20px;
            }

            .hours-block-modern .value {
                font-size: 1.4rem;
            }
        }


        /* --- Main Header Styles --- */
        .main-header {
            position: relative;
            z-index: 1000;
            background: #fff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        @media (max-width: 768px) {
            .main-header {
                min-height: 60px;
                display: flex;
                align-items: center;
            }

            .main-header .container>div {
                padding-top: 10px !important;
                padding-bottom: 10px !important;
                width: 100%;
            }

            .header-actions {
                position: absolute;
                top: 50%;
                right: 15px;
                transform: translateY(-50%);
            }

            .header-logo-text {
                font-size: 1.1rem !important;
            }

            .header-logo-text strong {
                font-weight: 700;
            }
        }




        body {

            background-color: #fff;
            font-family: 'Roboto Condensed', sans-serif;
        }

        a {
            color: #2F2F2F;
            text-decoration: none;
        }

        a:hover {
            color: #2F2F2F;
        }

        h1 {
            color: #000;
            font-size: 50px;
        }

        h4 {
            color: white;
        }

        h2 {
            font-size: 25px;
            color: #000;
        }

        .service-card .flex-shrink-0 {
            width: 3rem;
            height: 3rem;
        }

        .navbar-right {
            margin-right: 0;
            font-size: 18px;
        }


        .navbar-brand {
            font-size: 34px;
        }

        #wrapper {
            min-height: 100%;
            height: auto !important;
            height: 100%;
            margin-bottom: -100px;
            /* değeri footer yüksekliği kadar veriyoruz */
        }

        .footer-ghost {
            height: 100px;
            /* değeri footer yüksekliği kadar veriyoruz. */
        }

        footer {
            text-align: center;
            font-family: Arial;
            font-size: 15px;
            color: #353535;
        }

        .navbar-toggle {
            background-color: #DDD;
        }

        .navbar-default .navbar-nav>li>a {
            color: #000;
        }

        .navbar-default .navbar-nav>li>a:focus {
            color: #000;
        }

        .navbar-default .navbar-nav>li>a:hover {
            color: #000;
        }

        .navbar-default .navbar-brand {
            color: #000;
        }

        .navbar-default .navbar-brand:hover {
            color: #000;
        }


        h4,
        .h4,
        h5,
        .h5,
        h6,
        .h6 {
            margin-top: 10px;
            margin-bottom: 0px;
        }

        .form-control:focus {
            color: #212529;
            background-color: #fff;
            border-color: #919191;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%);
        }

        /* Phone Mockup */
        .iphone-mockup {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: auto;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 4/3;
            border: 6px solid #ffffff;
            border-radius: 24px;
            background-image: url('public/img/contact.jpg') !important;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            margin: 0 auto;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.3s ease;
        }

        .iphone-mockup:hover {
            transform: perspective(2000px) scale(1.005);
            transition: transform 1s ease;
        }

        /* Screen Content Background */
        .iphone-screen {
            width: 100%;
            height: 100%;
            background: transparent;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 4rem 1.5rem 2rem;
            color: white;
            justify-content: space-between;
        }

        /* Background Glow */
        .iphone-bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle at center, rgba(40, 140, 92, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Header */
        .iphone-header {
            text-align: center;
            z-index: 10;
            width: 100%;
        }

        .iphone-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 3rem;
            color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .iphone-name {
            color: black;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .iphone-status {
            font-size: 1rem;
            opacity: 0.7;
            font-weight: 500;
        }

        /* Actions */
        .iphone-actions {
            width: 100%;
            display: flex;
            justify-content: space-around;
            padding-bottom: 3rem;
            z-index: 10;
        }

        .iphone-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

        .iphone-btn:hover {
            transform: scale(1.15);
        }

        .iphone-btn.decline {
            background: #ef4444;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }

        .iphone-btn.accept {
            background: #10b981;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            animation: pulse-green 2s infinite;
        }

        .iphone-message {
            color: black;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.75rem 1.25rem;
            border-radius: 9999px;
            backdrop-filter: blur(4px);
            margin-top: 2rem;
            font-size: 0.875rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        /* Hardware Buttons */
        .iphone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 28px;
            background: #1f2937;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            z-index: 20;
        }

        .iphone-power {
            position: absolute;
            top: 120px;
            right: -15px;
            width: 3px;
            height: 40px;
            background: #4b5563;
            border-top-right-radius: 2px;
            border-bottom-right-radius: 2px;
        }

        .iphone-vol {
            position: absolute;
            left: -15px;
            width: 3px;
            height: 40px;
            background: #4b5563;
            border-top-left-radius: 2px;
            border-bottom-left-radius: 2px;
        }

        .iphone-vol.up {
            top: 100px;
        }

        .iphone-vol.down {
            top: 150px;
        }

        /* Guest Styles */
        .guest-main-padding {
            padding-top: 1.5rem;
        }



        @media (max-width: 768px) {
            .guest-main-padding {
                padding-top: 5rem;
            }

            .guest-modal-spacing {
                padding-top: 5rem !important;
            }
        }

        /* ══════════════════════════════════════════════════════════════
           Feature Sections — Reference Design Match
           ══════════════════════════════════════════════════════════════ */
        .ref-wrap {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            -webkit-font-smoothing: antialiased;
            color: #1E293B;
        }

        .text-center>span {
            font-family: 'Roboto Condensed', sans-serif;
        }

        .ref-wrap *,
        .ref-wrap *::before,
        .ref-wrap *::after {
            box-sizing: border-box;
        }

        /* ── Colors ── */
        :root {
            --ref-primary: #10B981;
            --ref-primary-hover: #059669;
            --ref-slate-50: #ffffffff;
            --ref-slate-100: #F1F5F9;
            --ref-slate-200: #E2E8F0;
            --ref-slate-400: #94A3B8;
            --ref-slate-500: #64748B;
            --ref-slate-600: #475569;
            --ref-slate-700: #334155;
            --ref-slate-800: #1E293B;
            --ref-slate-900: #0F172A;
        }

        /* ── Section Base ── */
        .ref-section {
            padding: 2.5rem 1.5rem 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .ref-container {
            max-width: 80rem;
            margin: 0 auto;
        }

        /* ── Badges ── */
        .ref-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            border: 1px solid transparent;
        }

        .ref-badge-green {
            background: #ecfdf5;
            color: #059669;
            border-color: #a7f3d0;
        }

        .ref-badge-blue {
            background: #eff6ff;
            color: #2563eb;
            border-color: #bfdbfe;
        }

        .ref-badge-purple {
            background: #faf5ff;
            color: #7c3aed;
            border-color: #ddd6fe;
        }

        .ref-badge-slate {
            background: var(--ref-slate-800);
            color: #34d399;
            border-color: var(--ref-slate-700);
        }

        /* ── Typography ── */
        .ref-h2 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .ref-p {
            font-size: 1rem;
            color: var(--ref-slate-600);
            line-height: 1.75;
        }

        /* ── Two Column Grid ── */
        .ref-grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .ref-grid-2 {
                grid-template-columns: 1fr 1fr;
            }

            .ref-h2 {
                font-size: 2.5rem;
            }
        }

        /* ── Feature Items ── */
        .ref-feature-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .ref-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 0.75rem;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .ref-feature-item:hover {
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
            border-color: var(--ref-slate-100);
        }

        .ref-feature-icon {
            width: 3rem;
            height: 3rem;
            min-width: 3rem;
            border-radius: 0.5rem;
            background: #d1fae5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ref-primary);
        }

        .ref-feature-icon .material-symbols-outlined {
            font-size: 24px;
        }

        .ref-feature-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            margin-bottom: 0.25rem;
        }

        .ref-feature-desc {
            font-size: 0.875rem;
            color: var(--ref-slate-500);
            margin: 0;
        }

        /* ══ Glass Card — Canlı Destek ══ */
        .ref-support-area {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
        }

        /* ══ Enhanced Liquid-Glass Card ══ */
        .ref-glass-card {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 400px;
            height: auto;
            min-height: 480px;
            border-radius: 2rem;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            isolation: isolate;
            /* Frosted glass */
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            /* Multi-layer inset shadows for glass depth */
            box-shadow:
                inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 0 rgba(255, 255, 255, 0.15),
                inset 0 0 40px rgba(255, 255, 255, 0.25),
                0 8px 32px rgba(31, 38, 135, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1.5px solid transparent;
            background-clip: padding-box;
            transition: all 0.5s ease;
        }

        /* Gradient rim-light border */
        .ref-glass-card::before {
            content: '';
            position: absolute;
            inset: -1.5px;
            border-radius: 2rem;
            padding: 1.5px;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0.1) 40%,
                    rgba(16, 185, 129, 0.2) 70%,
                    rgba(255, 255, 255, 0.4) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 0;
        }

        .ref-glass-card:hover {
            box-shadow:
                inset 0 1px 0 0 rgba(255, 255, 255, 0.7),
                inset 0 -1px 0 0 rgba(255, 255, 255, 0.2),
                inset 0 0 50px rgba(255, 255, 255, 0.3),
                0 12px 40px rgba(31, 38, 135, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        /* ── Floating Icons Background ── */
        .hero-floating-icons {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            /* behind the glass card */
        }

        .floating-icon-wrapper {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            color: var(--ref-primary);
            animation: float-icon 15s ease-in-out infinite alternate;
        }

        .floating-icon-wrapper svg {
            width: 24px;
            height: 24px;
        }

        .floating-icon-wrapper.icon-1 {
            top: 5%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-icon-wrapper.icon-2 {
            top: 60%;
            left: -2%;
            animation-delay: -2s;
        }

        .floating-icon-wrapper.icon-3 {
            top: 30%;
            right: 5%;
            animation-delay: -4s;
        }

        .floating-icon-wrapper.icon-4 {
            bottom: 5%;
            right: 10%;
            animation-delay: -6s;
        }

        .floating-icon-wrapper.icon-5 {
            top: 10%;
            right: 20%;
            animation-delay: -8s;
        }

        .floating-icon-wrapper.icon-6 {
            top: 85%;
            left: 30%;
            animation-delay: -10s;
        }

        .floating-icon-wrapper.icon-7 {
            bottom: -10px;
            left: 60%;
            animation-delay: -12s;
        }

        .floating-icon-wrapper.icon-8 {
            top: -10px;
            left: 40%;
            animation-delay: -14s;
        }

        @keyframes float-icon {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(15px, -20px) rotate(5deg);
            }

            100% {
                transform: translate(-10px, 15px) rotate(-5deg);
            }
        }

        /* Content sits above blobs */
        .ref-glass-card>*:not(.ref-glass-blob) {
            position: relative;
            z-index: 2;
        }

        .ref-avatars {
            display: flex;
            justify-content: center;
            padding-top: 2rem;
            margin-bottom: 1rem;
        }

        .ref-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 4px solid #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            margin-right: -16px;
        }

        .ref-avatar-badge {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 4px solid #fff;
            background: var(--ref-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .ref-glass-title {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .ref-glass-title h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            margin: 0 0 0.25rem;
        }

        .ref-glass-title p {
            font-size: 0.875rem;
            color: var(--ref-slate-500);
            margin: 0;
        }

        .ref-timer-box {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
        }

        .ref-timer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .ref-timer-label {
            font-size: 0.6875rem;
            font-weight: 600;
            color: var(--ref-slate-600);
            text-transform: uppercase;
        }

        .ref-timer-tag {
            font-size: 0.6875rem;
            font-weight: 700;
            color: #047857;
            background: rgba(167, 243, 208, 0.8);
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
        }

        .ref-timer-value {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            text-align: center;
        }

        .ref-glass-btn {
            width: 100%;
            padding: 0.75rem;
            background: black !important;
            color: #fff;
            border: none;
            border-radius: 0.75rem;
            font-weight: 500;
            font-size: 0.9375rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s;
            text-decoration: none;
        }

        .ref-glass-btn:hover {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
            color: #fff;
        }

        .ref-glass-btn .material-symbols-outlined {
            font-size: 20px;
        }

        /* ══ Services Grid ══ */
        .ref-services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .ref-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .ref-services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .ref-svc-card {
            background: #fff;
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--ref-slate-100);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            height: 100%;
            transition: box-shadow 0.3s;
        }

        .ref-svc-card:hover {
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
        }

        .ref-svc-icon {
            color: var(--ref-slate-600);
            transition: color 0.3s;
        }

        .ref-svc-card:hover .ref-svc-icon {
            color: var(--ref-primary);
        }

        .ref-svc-icon .material-symbols-outlined {
            font-size: 48px;
        }

        .ref-svc-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            margin-bottom: 0.5rem;
        }

        .ref-svc-desc {
            font-size: 0.875rem;
            color: var(--ref-slate-500);
            line-height: 1.6;
            margin: 0;
        }

        /* ══ Security Widget ══ */
        .ref-sec-visual {
            position: relative;
        }

        .ref-sec-card {
            position: relative;
            background: rgb(255 255 255 / 78%);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 8px 32px 0 rgb(131 131 131 / 24%);
            border-radius: 1.5rem;
            padding: 2.5rem 1.5rem;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .ref-sec-card {
                padding: 4rem 3rem;
            }
        }

        @media (min-width: 1024px) {
            .ref-sec-card {
                padding: 5.5rem;
            }
        }

        .ref-sec-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .ref-sec-header h4 {
            font-weight: 700;
            color: var(--ref-slate-800);
            margin: 0;
        }

        .ref-ping {
            position: relative;
            width: 12px;
            height: 12px;
            display: inline-flex;
        }

        .ref-ping-ring {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: #34d399;
            opacity: 0.75;
            animation: ref-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .ref-ping-dot {
            position: relative;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--ref-primary);
        }

        @keyframes ref-ping {

            75%,
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .ref-uptime-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .ref-uptime-label {
            color: var(--ref-slate-600);
            font-weight: 500;
        }

        .ref-uptime-val {
            color: #059669;
            font-weight: 700;
        }

        .ref-bars {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 64px;
            margin-bottom: 1.5rem;
        }

        .ref-bar {
            flex: 1;
            background: var(--ref-primary);
            border-radius: 2px;
            height: 100%;
            transform-origin: bottom;
            transform: scaleY(0);
            /* start hidden */
            opacity: 0;
        }

        .ref-bars.animate .ref-bar {
            animation: ref-bar-grow 1s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
        }

        .ref-bar:nth-child(1) {
            animation-delay: 0.1s;
        }

        .ref-bar:nth-child(2) {
            animation-delay: 0.3s;
        }

        .ref-bar:nth-child(3) {
            animation-delay: 0.5s;
        }

        .ref-bar:nth-child(4) {
            animation-delay: 0.2s;
        }

        .ref-bar:nth-child(5) {
            animation-delay: 0.4s;
        }

        .ref-bar:nth-child(6) {
            animation-delay: 0.6s;
        }

        .ref-bar:nth-child(7) {
            animation-delay: 0.1s;
        }

        .ref-bar:nth-child(8) {
            animation-delay: 0.3s;
        }

        @keyframes ref-bar-grow {
            0% {
                transform: scaleY(0);
                opacity: 0;
            }

            100% {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .ref-enc-row {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 0.75rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .ref-enc-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #059669;
        }

        .ref-enc-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--ref-slate-800);
        }

        .ref-enc-sub {
            font-size: 0.75rem;
            color: var(--ref-slate-600);
        }

        .ref-check-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .ref-check-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--ref-slate-700);
            font-size: 1rem;
        }

        .ref-check-item .material-symbols-outlined {
            color: var(--ref-primary);
            font-size: 24px;
        }

        /* ══ CTA Section ══ */
        .ref-cta-box {
            background: #fff;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--ref-slate-200);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            gap: 2rem;
            position: relative;
        }

        @media (min-width: 768px) {
            .ref-cta-box {
                flex-direction: row;
                justify-content: space-between;
                padding: 3rem;
            }
        }

        .ref-cta-glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 384px;
            height: 384px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 50%;
            filter: blur(60px);
            transform: translate(50%, -50%);
        }

        .ref-cta-text {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 42rem;
        }

        @media (min-width: 768px) {
            .ref-cta-text {
                text-align: left;
            }
        }

        .ref-cta-heading {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .ref-cta-heading {
                font-size: 3rem;
            }
        }

        .ref-cta-desc {
            font-size: 1.125rem;
            color: var(--ref-slate-500);
            margin: 0;
        }

        .ref-cta-btn {
            position: relative;
            z-index: 10;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--ref-primary);
            color: #fff;
            font-weight: 700;
            font-size: 1.125rem;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 9999px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .ref-cta-btn:hover {
            background: var(--ref-primary-hover);
            color: #fff;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
            transform: translateY(-2px);
        }

        .ref-cta-btn .material-symbols-outlined {
            font-size: 24px;
        }

        /* ── Responsive ── */
        @media (max-width: 767px) {
            .ref-h2 {
                font-size: 1.875rem;
            }

            .ref-cta-heading {
                font-size: 1.75rem;
            }

            .ref-support-area {
                min-height: 480px;
            }

            .ref-section {
                padding: 2.5rem 1rem 3.5rem;
            }

            .ref-grid-2 {
                gap: 2.5rem !important;
            }

            .ref-glass-card {
                padding: 1.25rem;
                min-height: 440px;
            }
        }

        @media (min-width: 1024px) {
            .ref-order-lg-1 {
                order: 1;
            }

            .ref-order-lg-2 {
                order: 2;
            }
        }

        /* Loading animation for .com.tr row */
        #comtr-row.loading td {
            opacity: 0.8;
        }

        @keyframes comtr-pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        #comtr-status .bi-hourglass-split {
            animation: comtr-pulse 1.5s ease-in-out infinite;
        }

        /* Custom Toast */
        /* .custom-toast {
        opacity: 1;  Saydamlık olmadan 
        background-color: #f8f9fa;
        border: none;
    }*/

        /* Enhanced Contact Modal Rewrite */
        @media (min-width: 992px) {
            .contact-modal.modal-enhanced .modal-dialog {
                max-width: 480px;
            }
        }

        .contact-modal.modal-enhanced .modal-content {
            border-radius: 24px;
            border: none;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            background: #ffffff;
            padding: 0.5rem;
        }

        .contact-modal.modal-enhanced .modal-header {
            border-bottom: none;
            padding: 1.5rem 1.5rem 1rem 1.5rem !important;
        }

        .contact-modal.modal-enhanced .modal-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1E293B;
            letter-spacing: -0.02em;
        }

        .contact-modal.modal-enhanced .btn-close {
            opacity: 0.5;
            background-size: 0.8em;
        }

        .contact-modal.modal-enhanced .btn-close:hover {
            opacity: 1;
        }

        .contact-modal.modal-enhanced .modal-body {
            padding: 0 1.5rem 1.5rem 1.5rem !important;
        }

        .contact-card-modern {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            padding: 1.15rem 1.25rem;
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 20px;
            text-decoration: none;
            color: inherit;
            margin-bottom: 0.875rem;
        }

        .contact-card-modern:hover {
            color: inherit;
            text-decoration: none;
        }

        .contact-icon-modern {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(16, 185, 129, 0.05);
            /* Very light green circle */
            color: #10B981;
            flex-shrink: 0;
        }

        .contact-icon-modern .material-symbols-outlined {
            font-size: 1.5rem;
            font-weight: 400;
        }

        .contact-card-modern .c-label {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 0.05em;
            font-weight: 700;
            color: #94A3B8;
            text-transform: uppercase;
            margin-bottom: 0.25rem;
        }

        .contact-card-modern .c-val {
            display: block;
            font-weight: 700;
            font-size: 1.25rem;
            color: #334155;
        }

        .contact-card-modern:hover {
            background-color: #e8e8e8ff;
            color: #334155;
            transition: all 0.5s ease;
        }

        .hours-block-modern {
            background: #10B981;
            color: white;
            padding: 1rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 1.25rem;
        }

        .hours-block-modern .label {
            display: block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .hours-block-modern .value {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }


        body {

            background-color: #fff;
            font-family: 'Roboto Condensed', sans-serif;
        }

        a {
            color: #2F2F2F;
            text-decoration: none;
        }

        a:hover {
            color: #2F2F2F;
        }

        h1 {
            color: #000;
            font-size: 50px;
        }

        h4 {
            color: white;
        }

        h2 {
            font-size: 25px;
            color: #000;
        }

        .service-card .flex-shrink-0 {
            width: 3rem;
            height: 3rem;
        }

        .navbar-right {
            margin-right: 0;
            font-size: 18px;
        }


        .navbar-brand {
            font-size: 34px;
        }

        #wrapper {
            min-height: 100%;
            height: auto !important;
            height: 100%;
            margin-bottom: -100px;
        }

        .footer-ghost {
            height: 100px;
        }

        footer {
            text-align: center;
            font-family: Arial;
            font-size: 15px;
            color: #353535;
        }

        .navbar-toggle {
            background-color: #DDD;
        }

        .navbar-default .navbar-nav>li>a {
            color: #000;
        }

        .navbar-default .navbar-nav>li>a:focus {
            color: #000;
        }

        .navbar-default .navbar-nav>li>a:hover {
            color: #000;
        }

        .navbar-default .navbar-brand {
            color: #000;
        }

        .navbar-default .navbar-brand:hover {
            color: #000;
        }


        h4,
        .h4,
        h5,
        .h5,
        h6,
        .h6 {
            margin-top: 10px;
            margin-bottom: 0px;
        }

        .form-control:focus {
            color: #212529;
            background-color: #fff;
            border-color: #919191;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 25%);
        }

        /* Phone Mockup */
        .iphone-mockup {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: auto;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 4/3;
            border: 6px solid #ffffff;
            border-radius: 24px;
            background-image: url('public/img/contact.jpg') !important;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            margin: 0 auto;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.3s ease;
        }

        .iphone-mockup:hover {
            transform: perspective(2000px) scale(1.005);
            transition: transform 1s ease;
        }

        /* Screen Content Background */
        .iphone-screen {
            width: 100%;
            height: 100%;
            background: transparent;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 4rem 1.5rem 2rem;
            color: white;
            justify-content: space-between;
        }

        /* Background Glow */
        .iphone-bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle at center, rgba(40, 140, 92, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Header */
        .iphone-header {
            text-align: center;
            z-index: 10;
            width: 100%;
        }

        .iphone-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: black;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 3rem;
            color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .iphone-name {
            color: black;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .iphone-status {
            font-size: 1rem;
            opacity: 0.7;
            font-weight: 500;
        }

        /* Actions */
        .iphone-actions {
            width: 100%;
            display: flex;
            justify-content: space-around;
            padding-bottom: 3rem;
            z-index: 10;
        }

        .iphone-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

        .iphone-btn:hover {
            transform: scale(1.15);
        }

        .iphone-btn.decline {
            background: #ef4444;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
        }

        .iphone-btn.accept {
            background: #10b981;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            animation: pulse-green 2s infinite;
        }

        .iphone-message {
            color: black;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.75rem 1.25rem;
            border-radius: 9999px;
            backdrop-filter: blur(4px);
            margin-top: 2rem;
            font-size: 0.875rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        /* Hardware Buttons */
        .iphone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 28px;
            background: #1f2937;
            border-bottom-left-radius: 14px;
            border-bottom-right-radius: 14px;
            z-index: 20;
        }

        .iphone-power {
            position: absolute;
            top: 120px;
            right: -15px;
            width: 3px;
            height: 40px;
            background: #4b5563;
            border-top-right-radius: 2px;
            border-bottom-right-radius: 2px;
        }

        .iphone-vol {
            position: absolute;
            left: -15px;
            width: 3px;
            height: 40px;
            background: #4b5563;
            border-top-left-radius: 2px;
            border-bottom-left-radius: 2px;
        }

        .iphone-vol.up {
            top: 100px;
        }

        .iphone-vol.down {
            top: 150px;
        }

        /* Guest Styles */
        .guest-main-padding {
            padding-top: 1.5rem;
        }



        @media (max-width: 768px) {
            .guest-main-padding {
                padding-top: 2rem;
            }

            .guest-modal-spacing {
                padding-top: 5rem !important;
            }
        }

        /* ══════════════════════════════════════════════════════════════
   Feature Sections — Reference Design Match
   ══════════════════════════════════════════════════════════════ */
        .ref-wrap {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            -webkit-font-smoothing: antialiased;
            color: #1E293B;
        }

        .ref-wrap *,
        .ref-wrap *::before,
        .ref-wrap *::after {
            box-sizing: border-box;
        }

        /* ── Colors ── */
        :root {
            --ref-primary: #10B981;
            --ref-primary-hover: #059669;
            --ref-slate-50: #ffffffff;
            --ref-slate-100: #F1F5F9;
            --ref-slate-200: #E2E8F0;
            --ref-slate-400: #94A3B8;
            --ref-slate-500: #64748B;
            --ref-slate-600: #475569;
            --ref-slate-700: #334155;
            --ref-slate-800: #1E293B;
            --ref-slate-900: #0F172A;
        }

        /* ── Section Base ── */
        .ref-section {
            padding: 2.5rem 1.5rem 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .ref-container {
            max-width: 80rem;
            margin: 0 auto;
        }

        /* ── Badges ── */
        .ref-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.6875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
            border: 1px solid transparent;
        }

        .ref-badge-green {
            background: #ecfdf5;
            color: #059669;
            border-color: #a7f3d0;
        }

        .ref-badge-blue {
            background: #eff6ff;
            color: #2563eb;
            border-color: #bfdbfe;
        }

        .ref-badge-purple {
            background: #faf5ff;
            color: #7c3aed;
            border-color: #ddd6fe;
        }

        .ref-badge-slate {
            background: var(--ref-slate-800);
            color: #34d399;
            border-color: var(--ref-slate-700);
        }

        /* ── Typography ── */
        .ref-h2 {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .ref-p {
            font-size: 1rem;
            color: var(--ref-slate-600);
            line-height: 1.75;
        }

        /* ── Two Column Grid ── */
        .ref-grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .ref-grid-2 {
                grid-template-columns: 1fr 1fr;
            }

            .ref-h2 {
                font-size: 2.5rem;
            }
        }

        /* ── Feature Items ── */
        .ref-feature-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .ref-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 0.75rem;
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .ref-feature-item:hover {
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
            border-color: var(--ref-slate-100);
        }

        .ref-feature-icon {
            width: 3rem;
            height: 3rem;
            min-width: 3rem;
            border-radius: 0.5rem;
            background: #d1fae5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ref-primary);
        }

        .ref-feature-icon .material-symbols-outlined {
            font-size: 24px;
        }

        .ref-feature-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            margin-bottom: 0.25rem;
        }

        .ref-feature-desc {
            font-size: 0.875rem;
            color: var(--ref-slate-500);
            margin: 0;
        }

        /* ══ Glass Card — Canlı Destek ══ */
        .ref-support-area {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
        }

        /* ══ Enhanced Liquid-Glass Card ══ */
        .ref-glass-card {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 400px;
            height: auto;
            min-height: 480px;
            border-radius: 2rem;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            isolation: isolate;
            /* Frosted glass */
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            /* Multi-layer inset shadows for glass depth */
            box-shadow:
                inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 0 rgba(255, 255, 255, 0.15),
                inset 0 0 40px rgba(255, 255, 255, 0.25),
                0 8px 32px rgba(31, 38, 135, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1.5px solid transparent;
            background-clip: padding-box;
            transition: all 0.5s ease;
        }

        /* Gradient rim-light border */
        .ref-glass-card::before {
            content: '';
            position: absolute;
            inset: -1.5px;
            border-radius: 2rem;
            padding: 1.5px;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0.1) 40%,
                    rgba(16, 185, 129, 0.2) 70%,
                    rgba(255, 255, 255, 0.4) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 0;
        }

        .ref-glass-card:hover {
            box-shadow:
                inset 0 1px 0 0 rgba(255, 255, 255, 0.7),
                inset 0 -1px 0 0 rgba(255, 255, 255, 0.2),
                inset 0 0 50px rgba(255, 255, 255, 0.3),
                0 12px 40px rgba(31, 38, 135, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        /* ── Floating Icons Background ── */
        .hero-floating-icons {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            /* behind the glass card */
        }

        .floating-icon-wrapper {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            color: var(--ref-primary);
            animation: float-icon 15s ease-in-out infinite alternate;
        }

        .floating-icon-wrapper svg {
            width: 24px;
            height: 24px;
        }

        .floating-icon-wrapper.icon-1 {
            top: 5%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-icon-wrapper.icon-2 {
            top: 60%;
            left: -2%;
            animation-delay: -2s;
        }

        .floating-icon-wrapper.icon-3 {
            top: 30%;
            right: 5%;
            animation-delay: -4s;
        }

        .floating-icon-wrapper.icon-4 {
            bottom: 5%;
            right: 10%;
            animation-delay: -6s;
        }

        .floating-icon-wrapper.icon-5 {
            top: 10%;
            right: 20%;
            animation-delay: -8s;
        }

        .floating-icon-wrapper.icon-6 {
            top: 85%;
            left: 30%;
            animation-delay: -10s;
        }

        .floating-icon-wrapper.icon-7 {
            bottom: -10px;
            left: 60%;
            animation-delay: -12s;
        }

        .floating-icon-wrapper.icon-8 {
            top: -10px;
            left: 40%;
            animation-delay: -14s;
        }

        @keyframes float-icon {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(15px, -20px) rotate(5deg);
            }

            100% {
                transform: translate(-10px, 15px) rotate(-5deg);
            }
        }

        /* Content sits above blobs */
        .ref-glass-card>*:not(.ref-glass-blob) {
            position: relative;
            z-index: 2;
        }

        .ref-avatars {
            display: flex;
            justify-content: center;
            padding-top: 2rem;
            margin-bottom: 1rem;
        }

        .ref-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 4px solid #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            margin-right: -16px;
        }

        .ref-avatar-badge {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 4px solid #fff;
            background: var(--ref-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .ref-glass-title {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .ref-glass-title h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            margin: 0 0 0.25rem;
        }

        .ref-glass-title p {
            font-size: 0.875rem;
            color: var(--ref-slate-500);
            margin: 0;
        }

        .ref-timer-box {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
        }

        .ref-timer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .ref-timer-label {
            font-size: 0.6875rem;
            font-weight: 600;
            color: var(--ref-slate-600);
            text-transform: uppercase;
        }

        .ref-timer-tag {
            font-size: 0.6875rem;
            font-weight: 700;
            color: #047857;
            background: rgba(167, 243, 208, 0.8);
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
        }

        .ref-timer-value {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            text-align: center;
        }

        .ref-glass-btn {
            width: 100%;
            padding: 0.75rem;
            background: black !important;
            color: #fff;
            border: none;
            border-radius: 0.75rem;
            font-weight: 500;
            font-size: 0.9375rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s;
            text-decoration: none;
        }

        .ref-glass-btn:hover {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
            color: #fff;
        }

        .ref-glass-btn .material-symbols-outlined {
            font-size: 20px;
        }

        /* ══ Services Grid ══ */
        .ref-services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .ref-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .ref-services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .ref-svc-card {
            background: #fff;
            padding: 2rem;
            border-radius: 1.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--ref-slate-100);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            height: 100%;
            transition: box-shadow 0.3s;
        }

        .ref-svc-card:hover {
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
        }

        .ref-svc-icon {
            color: var(--ref-slate-600);
            transition: color 0.3s;
        }

        .ref-svc-card:hover .ref-svc-icon {
            color: var(--ref-primary);
        }

        .ref-svc-icon .material-symbols-outlined {
            font-size: 48px;
        }

        .ref-svc-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            margin-bottom: 0.5rem;
        }

        .ref-svc-desc {
            font-size: 0.875rem;
            color: var(--ref-slate-500);
            line-height: 1.6;
            margin: 0;
        }

        /* ══ Security Widget ══ */
        .ref-sec-visual {
            position: relative;
        }

        .ref-sec-card {
            position: relative;
            background: rgb(255 255 255 / 78%);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 8px 32px 0 rgb(131 131 131 / 24%);
            border-radius: 1.5rem;
            padding: 2.5rem 1.5rem;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .ref-sec-card {
                padding: 4rem 3rem;
            }
        }

        @media (min-width: 1024px) {
            .ref-sec-card {
                padding: 5.5rem;
            }
        }

        .ref-sec-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .ref-sec-header h4 {
            font-weight: 700;
            color: var(--ref-slate-800);
            margin: 0;
        }

        .ref-ping {
            position: relative;
            width: 12px;
            height: 12px;
            display: inline-flex;
        }

        .ref-ping-ring {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: #34d399;
            opacity: 0.75;
            animation: ref-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .ref-ping-dot {
            position: relative;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--ref-primary);
        }

        @keyframes ref-ping {

            75%,
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .ref-uptime-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .ref-uptime-label {
            color: var(--ref-slate-600);
            font-weight: 500;
        }

        .ref-uptime-val {
            color: #059669;
            font-weight: 700;
        }

        .ref-bars {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            height: 64px;
            margin-bottom: 1.5rem;
        }

        .ref-bar {
            flex: 1;
            background: var(--ref-primary);
            border-radius: 2px;
            height: 100%;
            transform-origin: bottom;
            transform: scaleY(0);
            /* start hidden */
            opacity: 0;
        }

        .ref-bars.animate .ref-bar {
            animation: ref-bar-grow 1s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
        }

        .ref-bar:nth-child(1) {
            animation-delay: 0.1s;
        }

        .ref-bar:nth-child(2) {
            animation-delay: 0.3s;
        }

        .ref-bar:nth-child(3) {
            animation-delay: 0.5s;
        }

        .ref-bar:nth-child(4) {
            animation-delay: 0.2s;
        }

        .ref-bar:nth-child(5) {
            animation-delay: 0.4s;
        }

        .ref-bar:nth-child(6) {
            animation-delay: 0.6s;
        }

        .ref-bar:nth-child(7) {
            animation-delay: 0.1s;
        }

        .ref-bar:nth-child(8) {
            animation-delay: 0.3s;
        }

        @keyframes ref-bar-grow {
            0% {
                transform: scaleY(0);
                opacity: 0;
            }

            100% {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .ref-enc-row {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 0.75rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .ref-enc-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #059669;
        }

        .ref-enc-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--ref-slate-800);
        }

        .ref-enc-sub {
            font-size: 0.75rem;
            color: var(--ref-slate-600);
        }

        .ref-check-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .ref-check-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--ref-slate-700);
            font-size: 1rem;
        }

        .ref-check-item .material-symbols-outlined {
            color: var(--ref-primary);
            font-size: 24px;
        }

        /* ══ CTA Section ══ */
        .ref-cta-box {
            background: #fff;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--ref-slate-200);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            gap: 2rem;
            position: relative;
        }

        @media (min-width: 768px) {
            .ref-cta-box {
                flex-direction: row;
                justify-content: space-between;
                padding: 3rem;
            }
        }

        .ref-cta-glow {
            position: absolute;
            top: 0;
            right: 0;
            width: 384px;
            height: 384px;
            background: rgba(16, 185, 129, 0.08);
            border-radius: 50%;
            filter: blur(60px);
            transform: translate(50%, -50%);
        }

        .ref-cta-text {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 42rem;
        }

        @media (min-width: 768px) {
            .ref-cta-text {
                text-align: left;
            }
        }

        .ref-cta-heading {
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--ref-slate-800);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .ref-cta-heading {
                font-size: 3rem;
            }
        }

        .ref-cta-desc {
            font-size: 1.125rem;
            color: var(--ref-slate-500);
            margin: 0;
        }

        .ref-cta-btn {
            position: relative;
            z-index: 10;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--ref-primary);
            color: #fff;
            font-weight: 700;
            font-size: 1.125rem;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 9999px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .ref-cta-btn:hover {
            background: var(--ref-primary-hover);
            color: #fff;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
            transform: translateY(-2px);
        }

        .ref-cta-btn .material-symbols-outlined {
            font-size: 24px;
        }

        /* ── Responsive ── */
        @media (max-width: 767px) {
            .ref-h2 {
                font-size: 1.875rem;
            }

            .ref-cta-heading {
                font-size: 1.75rem;
            }

            .ref-support-area {
                min-height: 480px;
            }

            .ref-section {
                padding: 2.5rem 1rem 3.5rem;
            }

            .ref-grid-2 {
                gap: 2.5rem !important;
            }

            .ref-glass-card {
                padding: 1.25rem;
                min-height: 440px;
            }
        }

        @media (min-width: 1024px) {
            .ref-order-lg-1 {
                order: 1;
            }

            .ref-order-lg-2 {
                order: 2;
            }
        }

        footer a:hover {
            color: #10B981 !important;
        }

        @media (min-width: 768px) {
            footer>div {
                flex-direction: row !important;
                justify-content: space-between !important;
            }
        }

        /* ══ Notification Banner ══ */
        .notif-banner {
            background-color: #000000;
            position: relative;
            z-index: 9999;
            /* Precise mechanical transitions - slowed down for weightier feel */
            transition: max-height 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                        padding 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                        opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                        clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 1.5rem;
            opacity: 1;
            max-height: 200px; /* Base for transition */
            clip-path: inset(0 0 0 0); /* Initial state of the mechanical blade */
            box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
            will-change: max-height, transform, opacity, clip-path;
        }

        /* Ensure internal elements lift and fade in perfect harmony */
        .notif-banner > * {
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                        opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            will-change: transform, opacity;
        }

        @media (max-width: 768px) {
            .notif-banner {
                flex-wrap: wrap;
                padding: 0.75rem 1rem;
                gap: 0.5rem;
                text-align: center;
            }

            .notif-banner .write {
                font-size: 0.85rem;
                width: 100%;
                display: block;
            }

            .notif-banner a.block {
                font-size: 1.1rem;
                font-weight: bold;
            }

            .hide-on-mobile {
                display: none !important;
            }

            .btn-get {
                padding: 0.25rem 0.75rem !important;
                font-size: 0.85rem !important;
                height: auto !important;
                min-height: 32px !important;
            }

            .btnget {
                margin-top: 5px;
            }
        }

        /* State when hidden via Modal */
        .banner-fade-hidden {
            max-height: 0 !important;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
            margin-top: -60px; /* Collapses the spatial footprint without overflow:hidden */
            transform: translateY(-100%) !important;
            clip-path: inset(0 0 100% 0) !important;
            opacity: 0 !important;
            pointer-events: none;
            /* Even slower retraction for a "heavy" mechanical part feel */
            transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1) !important;
        }

        /* Force internal elements to lift and vanish in sync */
        .banner-fade-hidden > * {
            transform: translateY(-60px) !important;
            opacity: 0 !important;
            transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), 
                        opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1) !important;
        }

        .notif-close-btn {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .notif-close-btn:hover {
            opacity: 1;
        }

        /* ══ Sepet badge ══ */
        .badge-dark {
            color: black;
        }

        /* ══ Hero subtitle ══ */
        .hero-subtitle {
            font-size: 20px;
        }

        /* ══ Social icons ══ */
        .social-icon {
            font-size: 24px;
            color: black;
        }

        /* ══ Alert close button ══ */
        .alert-close-btn {
            font-size: 10px;
        }

        /* ══ Register link in alert ══ */
        .alert-register-link {
            font-weight: bold;
        }

        /* ══ Domain table X cell ══ */
        .domain-taken-cell {
            color: #dc4146;
            font-weight: bold;
        }

        /* ══ KDV note ══ */
        .kdv-note {
            font-size: 12px;
        }

        /* ══ Feature section text column ══ */
        .ref-text-col {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* ══ Ref primary text span ══ */
        .ref-primary-text {
            color: var(--ref-primary);
        }

        /* ══ Ref-p max-width variants ══ */
        .ref-p-sm {
            max-width: 32rem;
        }

        .ref-p-md {
            max-width: 600px;
            margin: 0 auto;
            margin-top: 1rem;
        }

        /* ══ Ref avatar default ══ */
        .ref-avatar-default {
            background: #E2E8F0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ref-avatar-icon {
            font-size: 32px;
            color: #94A3B8;
        }

        /* ══ Services section header ══ */
        .ref-svc-header {
            max-width: 48rem;
            margin-bottom: 2rem;
        }

        .ref-svc-header .ref-h2 {
            margin-bottom: 1.5rem;
        }

        /* ══ Security section inner ══ */
        .ref-uptime-inner {
            margin-bottom: 1.5rem;
        }

        .ref-enc-grow {
            flex-grow: 1;
        }

        .ref-enc-check {
            color: var(--ref-primary);
        }

        /* ══ Security heading ══ */
        .ref-sec-h2 {
            margin-bottom: 1.5rem;
        }

        .ref-sec-p {
            margin-bottom: 1.5rem;
        }

        /* ══ FAQ section header ══ */
        .faq-section-header {
            margin-bottom: 3rem;
        }

        .faq-badge {
            margin-bottom: 1rem;
        }

        /* ══ CTA badge ══ */
        .cta-badge {
            margin-bottom: 1.5rem;
        }

        /* ══ Footer ══ */
        .site-footer {
            background: #fff;
            padding: 3rem 1.5rem;
            border-top: 1px solid #E2E8F0;
            font-family: 'Inter', sans-serif;
        }

        .site-footer-inner {
            max-width: 80rem;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            font-size: 0.875rem;
            color: #64748B;
        }

        .site-footer-links {
            display: flex;
            gap: 2rem;
            font-weight: 500;
        }

        .site-footer-link {
            color: #64748B;
            text-decoration: none;
            transition: color 0.2s;
        }

        .site-footer-link:hover {
            color: #10B981 !important;
        }

        @media (min-width: 768px) {
            .site-footer-inner {
                flex-direction: row !important;
                justify-content: space-between !important;
            }
        }

        /* ══ Floating Contact Button ══ */
        .floating-contact-btn {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 56px;
            height: 56px;
            background: #10B981;
            color: #fff;
            border: none;
            border-radius: 50%;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1050;
            transition: all 0.3s;
        }

        .floating-contact-btn:hover {
            background: #059669;
            transform: scale(1.1);
        }

        .floating-contact-btn .material-symbols-outlined {
            font-size: 28px;
        }

        /* ══ Services section background ══ */
        .ref-section-services {
            background: rgba(255, 255, 255, 0.5);
        }

        .ref-svc-header-h2 {
            margin-bottom: 1.5rem;
        }

        /* ══ Yandex Metrika noscript pixel ══ */
        .ym-pixel {
            position: absolute;
            left: -9999px;
        }