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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
        }

        :root {
            --red-primary: #DC2626;
            --red-dark: #991B1B;
            --red-light: #FCA5A5;
            --red-50: #FEF2F2;
            --red-100: #FEE2E2;
            --red-600: var(--red-primary);
            --red-700: #B91C1C;
            --red-800: var(--red-dark);
            --red-900: #7F1D1D;
            --red-accent: #EF4444;
            --red-soft: #F87171;
            --red-200: #FECACA;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--red-primary);
            border-radius: 4px;
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(220, 38, 38, 0.15);
        }

        .nav-link {
            position: relative;
            color: #374151;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--red-primary);
        }

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

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--red-900) 0%, var(--red-primary) 40%, var(--red-accent) 70%, var(--red-light) 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

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

        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: blobFloat 8s ease-in-out infinite;
        }

        .hero-blob-1 {
            width: 400px;
            height: 400px;
            background: #ffffff;
            top: -100px;
            right: -100px;
        }

        .hero-blob-2 {
            width: 300px;
            height: 300px;
            background: var(--red-light);
            bottom: -50px;
            left: -50px;
            animation-delay: -4s;
        }

        @keyframes blobFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: pulse-badge 2s ease-in-out infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
            50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
        }

        /* Floating Icons */
        .floating-icon {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 3rem;
            animation: floatIcon 6s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Stats Bar */
        .stats-bar {
            background: white;
            margin-top: -60px;
            position: relative;
            z-index: 10;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            border-right: 1px solid var(--red-100);
            transition: transform 0.3s ease;
        }

        .stat-item:last-child {
            border-right: none;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--red-100);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red-primary), var(--red-accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
        }

        .service-card-image {
            margin: -18px -8px 24px;
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card-image a,
        .service-title-link {
            color: inherit;
            text-decoration: none;
        }

        .service-card-image a {
            display: block;
            width: 100%;
        }

        .service-title-link:hover {
            color: var(--red-primary);
        }

        .service-card-image img {
            display: block;
            width: 100%;
            height: auto;
            max-height: 230px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.04);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--red-50), var(--red-100));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--red-primary);
            margin-bottom: 20px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--red-primary), var(--red-700));
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        /* Brands Section */
        .brand-logo {
            background: white;
            border-radius: 16px;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--red-100);
            transition: all 0.3s ease;
            font-weight: 700;
            font-size: 1.1rem;
            color: #6B7280;
            min-height: 100px;
        }

        .brand-logo:hover {
            border-color: var(--red-primary);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
            transform: translateY(-5px);
            color: var(--red-primary);
        }

        /* Why Us Section */
        .why-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
            gap: 32px;
            align-items: stretch;
        }

        .why-media-card {
            min-height: 100%;
            border-radius: 22px;
            overflow: hidden;
            background: #111827;
            color: #fff;
            box-shadow: 0 20px 55px rgba(15, 23, 42, 0.14);
            position: relative;
        }

        .why-media-card img {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 430px;
            object-fit: cover;
            opacity: 0.82;
        }

        .why-media-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.78));
        }

        .why-media-card > div {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            padding: 28px;
        }

        .why-media-card h3 {
            margin: 0 0 8px;
            color: #fff;
            font-size: 1.45rem;
            font-weight: 900;
            line-height: 1.2;
        }

        .why-media-card p {
            margin: 0;
            color: rgba(255, 255, 255, 0.84);
            line-height: 1.65;
        }

        .why-card-image {
            margin: -16px -8px 22px;
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .why-card-image img {
            display: block;
            width: 100%;
            height: auto;
            max-height: 210px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .why-card:hover .why-card-image img {
            transform: scale(1.04);
        }

        .why-card {
            background: white;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #f3f4f6;
        }

        .why-card:hover {
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
            transform: translateY(-5px);
        }

        .why-icon-wrap {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red-primary), var(--red-accent));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
        }

        @media (max-width: 900px) {
            .why-layout {
                grid-template-columns: 1fr;
            }

            .why-media-card img {
                min-height: 300px;
            }
        }

        @media (max-width: 640px) {
            .service-card-image img,
            .why-card-image img {
                max-height: none;
            }

            .service-card:hover .service-card-image img,
            .why-card:hover .why-card-image img {
                transform: none;
            }
        }

        /* Process Section */
        .process-step {
            position: relative;
            text-align: center;
        }

        .process-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red-primary), var(--red-700));
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
            position: relative;
            z-index: 2;
        }

        .process-line {
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--red-light), var(--red-primary));
            z-index: 1;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            border: 1px solid var(--red-100);
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 5rem;
            color: var(--red-light);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
            transform: translateY(-5px);
        }

        .stars {
            color: #FBBF24;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--red-900) 0%, var(--red-primary) 50%, var(--red-accent) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='m0 40 40-40h-20l-20 20zm40 0v-20l-20 20z'/%3E%3C/g%3E%3C/svg%3E");
        }

        /* Contact Form */
        .contact-form {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.08);
        }

        .form-input {
            width: 100%;
            padding: 14px 20px;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: var(--red-primary);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
        }

        .form-input::placeholder {
            color: #9CA3AF;
        }

        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--red-primary), var(--red-700));
            color: white;
            padding: 14px 35px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
        }

        .btn-white {
            background: white;
            color: var(--red-primary);
            padding: 14px 35px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: white;
            padding: 14px 35px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-outline:hover {
            background: white;
            color: var(--red-primary);
            border-color: white;
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(180deg, #1F2937, #111827);
        }

        .footer-link {
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            padding: 4px 0;
        }

        .footer-link:hover {
            color: var(--red-light);
            padding-left: 5px;
        }

        .servisbu-footer-logo {
            display: block;
            max-width: 220px;
            max-height: 62px;
            object-fit: contain;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .social-icon:hover {
            background: var(--red-primary);
            transform: translateY(-3px);
        }

        /* Section Title */
        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            color: #1F2937;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #6B7280;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .red-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--red-primary);
            border-radius: 50%;
            margin-right: 8px;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Pricing Cards */
        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 40px 30px;
            border: 2px solid var(--red-100);
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--red-primary);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'Popüler';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--red-primary), var(--red-700));
            color: white;
            padding: 5px 25px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
            transform: translateY(-5px);
        }

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

        /* Emergency Banner */
        .emergency-banner {
            background: linear-gradient(90deg, var(--red-900), var(--red-primary));
            color: white;
            padding: 12px 0;
            font-size: 0.9rem;
            overflow: hidden;
        }

        .marquee {
            animation: marquee 20s linear infinite;
            white-space: nowrap;
        }

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

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at top left, rgba(220, 38, 38, 0.08), transparent 34%),
                linear-gradient(180deg, #fff 0%, #f8fafc 100%);
            z-index: 9999;
            flex-direction: column;
            align-items: stretch;
            justify-content: flex-start;
            gap: 18px;
            overflow-y: auto;
            padding: 92px 22px 120px;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            font-size: 1rem;
            font-weight: 800;
            color: #1F2937;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--red-primary);
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            border: 1px solid #edf0f5;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
            color: #111827;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            animation: whatsappPulse 2s ease-in-out infinite;
            text-decoration: none;
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6); }
        }

        /* Phone Float */
        .phone-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--red-primary), var(--red-700));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
            text-decoration: none;
            animation: phonePulse 2s ease-in-out infinite 1s;
        }

        @keyframes phonePulse {
            0%, 100% { box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4); }
            50% { box-shadow: 0 8px 40px rgba(220, 38, 38, 0.6); }
        }

        /* Gallery */
        .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(220, 38, 38, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Map Container */
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .stat-item {
                border-right: none;
                border-bottom: 1px solid var(--red-100);
                padding: 20px 15px;
            }
            .stat-item:last-child {
                border-bottom: none;
            }
            .pricing-card.featured {
                transform: scale(1);
            }
            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }
            .contact-form {
                padding: 25px;
            }
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #1F2937;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                display: none;
            }
        }

        /* Accordion */
        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 15px;
            border: 1px solid var(--red-100);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1F2937;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--red-primary);
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--red-primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 25px;
            color: #6B7280;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 25px 20px;
        }

        /* Counter Animation */
        .counter {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .custom-logo {
            max-height: 56px;
            width: auto;
        }

        .servisbu-panel-logo {
            display: block;
            max-height: var(--servisbu-logo-height, 58px);
            width: auto;
            max-width: 220px;
            object-fit: contain;
        }

        @media (max-width: 767px) {
            .servisbu-panel-logo {
                max-height: var(--servisbu-mobile-logo-height, 44px);
                max-width: 170px;
            }
        }

        .servisbu-home-sections {
            display: flex;
            flex-direction: column;
        }

        .nav-links ul,
        .mobile-menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links .servisbu-primary-menu {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links .servisbu-primary-menu > li {
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-links .servisbu-primary-menu > li > a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            gap: 0;
            line-height: 1;
            white-space: nowrap;
        }

        .nav-links .menu-item-has-children > a::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.75rem;
            position: static;
            display: inline-block;
            width: auto;
            height: auto;
            margin-left: 8px;
            line-height: 1;
            background: none;
            transform: translateY(1px);
            transition: transform 0.18s ease, color 0.18s ease;
        }

        .nav-links .menu-item-has-children:hover > a::after,
        .nav-links .menu-item-has-children:focus-within > a::after {
            width: auto;
            transform: translateY(1px) rotate(180deg);
        }

        .nav-links .sub-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            min-width: 240px;
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 16px;
            padding: 10px;
            box-shadow: 0 22px 55px rgba(15, 23, 42, 0.15);
            display: flex;
            flex-direction: column;
            gap: 4px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translate(-50%, 8px);
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
            z-index: 1001;
        }

        .nav-links li:hover > .sub-menu,
        .nav-links li:focus-within > .sub-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translate(-50%, 0);
        }

        .nav-links .sub-menu::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: -18px;
            height: 18px;
        }

        .nav-links .sub-menu li {
            display: block;
            position: relative;
        }

        .nav-links .sub-menu a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 11px 13px;
            border-radius: 10px;
            color: #374151;
            font-size: 0.92rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .nav-links .sub-menu a:hover {
            background: var(--red-50);
            color: var(--red-primary);
        }

        .nav-links .sub-menu .sub-menu {
            top: 0;
            left: calc(100% + 12px);
            transform: translate(0, 8px);
        }

        .nav-links .sub-menu li:hover > .sub-menu,
        .nav-links .sub-menu li:focus-within > .sub-menu {
            transform: translate(0, 0);
        }

        .nav-links .sub-menu .sub-menu::before {
            top: 0;
            left: -12px;
            right: auto;
            width: 12px;
            height: 100%;
        }

        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }

        .mobile-menu .servisbu-mobile-menu-list {
            width: min(430px, 100%);
            margin: 0 auto;
            align-items: stretch;
            gap: 10px;
        }

        .mobile-menu li {
            width: 100%;
            text-align: left;
        }

        .mobile-menu .servisbu-mobile-menu-list > li > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            width: 100%;
            min-height: 54px;
            padding: 14px 16px;
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
        }

        .mobile-menu .menu-item-has-children > a::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.75rem;
            color: var(--red-primary);
        }

        .mobile-menu .sub-menu {
            margin: 8px 0 4px 14px;
            padding: 0 0 0 12px;
            border-left: 2px solid #fee2e2;
            gap: 7px;
        }

        .mobile-menu .sub-menu a {
            display: flex;
            align-items: center;
            min-height: 42px;
            font-size: 0.94rem;
            font-weight: 700;
            color: #6B7280;
            padding: 9px 12px;
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid #f1f5f9;
            border-radius: 12px;
        }

        .mobile-menu > .btn-primary {
            width: min(260px, 100%);
            min-height: 54px;
            justify-content: center;
            margin: 8px auto 0;
            padding: 14px 22px;
            font-size: 1rem;
        }

        .footer .widget,
        .footer .widget p,
        .footer .widget li {
            color: #9CA3AF;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer .widget ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer .widget a {
            color: #9CA3AF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer .widget a:hover {
            color: var(--red-light);
        }

        .servisbu-hp {
            position: absolute !important;
            left: -9999px !important;
            width: 1px !important;
            height: 1px !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .servisbu-mobile-bar {
            display: none;
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 76px;
            }

            .phone-float,
            .whatsapp-float {
                display: none;
            }

            .servisbu-mobile-bar {
                position: fixed;
                left: 12px;
                right: 12px;
                bottom: 12px;
                z-index: 1200;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                padding: 9px;
                border: 1px solid rgba(255, 255, 255, 0.24);
                border-radius: 18px;
                background: rgba(17, 24, 39, 0.94);
                box-shadow: 0 18px 38px rgba(17, 24, 39, 0.26);
                backdrop-filter: blur(16px);
            }

            .servisbu-mobile-bar a {
                min-height: 48px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                border-radius: 13px;
                color: #fff;
                text-decoration: none;
                font-size: 0.72rem;
                font-weight: 800;
                background: rgba(255, 255, 255, 0.08);
            }

            .servisbu-mobile-bar a:first-child {
                background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
            }

            .servisbu-mobile-bar a:nth-child(2) {
                background: #25D366;
            }

            .servisbu-mobile-bar i {
                font-size: 1rem;
            }
        }

        .servisbu-page-shell {
            background: #f9fafb;
            padding-top: 120px;
        }

        .servisbu-page-hero {
            position: relative;
            overflow: hidden;
            padding: 38px 0 34px;
            background: linear-gradient(135deg, #fff 0%, var(--red-50) 55%, var(--red-100) 100%);
            border-bottom: 1px solid var(--red-100);
        }

        .servisbu-page-hero-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.45;
            background-image: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.14), transparent 26%), radial-gradient(circle at 86% 10%, rgba(127, 29, 29, 0.12), transparent 24%);
            pointer-events: none;
        }

        .servisbu-breadcrumb {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 7px;
            width: fit-content;
            max-width: 100%;
            margin-bottom: 16px;
            padding: 7px 11px;
            border: 1px solid var(--red-100);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.78);
            box-shadow: 0 8px 22px rgba(220, 38, 38, 0.06);
            color: #6b7280;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .servisbu-breadcrumb a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--red-dark);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .servisbu-breadcrumb a:hover {
            color: var(--red-primary);
        }

        .servisbu-breadcrumb-sep {
            color: var(--red-soft);
            font-size: 0.7rem;
        }

        .servisbu-page-hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 280px;
            gap: 24px;
            align-items: center;
        }

        .servisbu-page-kicker {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 12px;
            padding: 6px 11px;
            border-radius: 999px;
            background: #fff;
            color: var(--red-primary);
            border: 1px solid var(--red-200);
            font-size: 0.76rem;
            font-weight: 800;
            box-shadow: 0 10px 28px rgba(220, 38, 38, 0.08);
        }

        .servisbu-page-hero h1 {
            margin: 0;
            max-width: 820px;
            color: #1f2937;
            font-size: clamp(1.7rem, 3vw, 2.65rem);
            line-height: 1.12;
            font-weight: 900;
            letter-spacing: 0;
        }

        .servisbu-page-hero p {
            max-width: 720px;
            margin: 12px 0 0;
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .servisbu-page-callout {
            background: #fff;
            border: 1px solid var(--red-100);
            border-radius: 14px;
            padding: 14px 16px;
            box-shadow: 0 14px 32px rgba(220, 38, 38, 0.1);
        }

        .servisbu-page-callout i {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-bottom: 10px;
            color: #fff;
            background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
            box-shadow: 0 8px 18px rgba(220, 38, 38, 0.22);
            font-size: 0.95rem;
        }

        .servisbu-page-callout strong {
            display: block;
            color: #111827;
            font-size: 1rem;
            font-weight: 900;
        }

        .servisbu-page-callout span {
            display: block;
            margin-top: 2px;
            color: #6b7280;
            font-size: 0.78rem;
        }

        .servisbu-page-content-wrap {
            padding: 56px 0 96px;
        }

        .servisbu-page-content {
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 18px;
            padding: clamp(28px, 5vw, 54px);
            box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
        }

        .servisbu-page-content .entry-content {
            color: #1f2937;
            font-size: 1.05rem;
            line-height: 1.85;
        }

        .servisbu-page-content .entry-content > *:first-child {
            margin-top: 0;
        }

        .servisbu-page-content .entry-content h2,
        .servisbu-page-content .entry-content h3 {
            color: #111827;
            font-weight: 850;
            line-height: 1.2;
            margin-top: 1.7em;
        }

        .servisbu-page-content .entry-content p,
        .servisbu-page-content .entry-content ul,
        .servisbu-page-content .entry-content ol {
            margin-bottom: 1.1em;
        }

        .servisbu-page-content .entry-content a {
            color: var(--red-primary);
            font-weight: 700;
            text-decoration: none;
        }

        .servisbu-page-content .entry-content a:hover {
            text-decoration: underline;
        }

        .servisbu-single-shell {
            background: #f8fafc;
        }

        .servisbu-single-hero {
            position: relative;
            overflow: hidden;
            padding: 132px 0 54px;
            background: linear-gradient(135deg, #fff 0%, var(--red-50) 58%, #fff 100%);
            border-bottom: 1px solid var(--red-100);
        }

        .servisbu-single-hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 36px;
            align-items: end;
            margin-top: 24px;
        }

        .servisbu-single-hero h1 {
            max-width: 880px;
            margin: 0;
            color: #111827;
            font-size: clamp(2rem, 4vw, 3.35rem);
            font-weight: 850;
            line-height: 1.12;
            letter-spacing: 0;
        }

        .servisbu-single-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .servisbu-single-meta span,
        .servisbu-single-meta a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            min-height: 36px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid #edf0f5;
            color: #64748b;
            font-size: 0.86rem;
            font-weight: 750;
            text-decoration: none;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
        }

        .servisbu-single-meta i {
            color: var(--red-primary);
        }

        .servisbu-single-meta a:hover {
            color: var(--red-primary);
            border-color: var(--red-100);
        }

        .servisbu-single-hero-card,
        .servisbu-single-cta-card,
        .servisbu-single-side-card {
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 20px;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        }

        .servisbu-single-hero-card {
            padding: 22px;
        }

        .servisbu-single-hero-card i {
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            border-radius: 14px;
            color: #fff;
            background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
            box-shadow: 0 12px 26px rgba(220, 38, 38, 0.24);
        }

        .servisbu-single-hero-card strong {
            display: block;
            color: #111827;
            font-size: 1.25rem;
            font-weight: 850;
        }

        .servisbu-single-hero-card span {
            display: block;
            margin-top: 6px;
            color: #6b7280;
            font-size: 0.94rem;
            line-height: 1.55;
        }

        .servisbu-single-content-wrap {
            padding: 64px 0 104px;
        }

        .servisbu-single-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 330px;
            gap: 36px;
            align-items: start;
        }

        .servisbu-single-article {
            min-width: 0;
            padding: clamp(22px, 4vw, 38px);
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 24px;
            box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
        }

        .servisbu-single-featured {
            margin: 0 0 34px;
            border-radius: 22px;
            overflow: hidden;
            background: #f8fafc;
            border: 1px solid #edf0f5;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        }

        .servisbu-single-featured img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .servisbu-single-article .entry-content {
            color: #334155;
            font-size: 1.04rem;
            line-height: 1.9;
        }

        .servisbu-single-article .entry-content > *:first-child {
            margin-top: 0;
        }

        .servisbu-single-article .entry-content p,
        .servisbu-single-article .entry-content ul,
        .servisbu-single-article .entry-content ol {
            margin-bottom: 1.15em;
        }

        .servisbu-single-article .entry-content h2,
        .servisbu-single-article .entry-content h3,
        .servisbu-single-article .entry-content h4 {
            color: #111827;
            font-weight: 800;
            line-height: 1.25;
            margin: 1.8em 0 0.65em;
            letter-spacing: 0;
        }

        .servisbu-single-article .entry-content h2 {
            font-size: clamp(1.45rem, 2.2vw, 2rem);
        }

        .servisbu-single-article .entry-content h3 {
            font-size: clamp(1.2rem, 1.8vw, 1.55rem);
        }

        .servisbu-single-article .entry-content strong {
            color: #111827;
            font-weight: 800;
        }

        .servisbu-single-article .entry-content a {
            color: var(--red-primary);
            font-weight: 750;
            text-decoration: none;
            border-bottom: 1px solid var(--red-200);
        }

        .servisbu-single-article .entry-content a:hover {
            border-color: var(--red-primary);
        }

        .servisbu-single-article .entry-content blockquote {
            margin: 28px 0;
            padding: 22px 24px;
            border-left: 4px solid var(--red-primary);
            border-radius: 16px;
            background: var(--red-50);
            color: #1f2937;
            font-weight: 700;
        }

        .servisbu-single-sidebar {
            position: sticky;
            top: 120px;
            display: grid;
            gap: 18px;
        }

        .servisbu-single-cta-card {
            padding: 24px;
        }

        .servisbu-single-cta-card > span {
            display: inline-flex;
            margin-bottom: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            background: var(--red-50);
            color: var(--red-primary);
            font-size: 0.78rem;
            font-weight: 850;
        }

        .servisbu-single-cta-card h2 {
            margin: 0 0 10px;
            color: #111827;
            font-size: 1.35rem;
            font-weight: 850;
            line-height: 1.25;
        }

        .servisbu-single-cta-card p {
            margin: 0 0 18px;
            color: #64748b;
            line-height: 1.65;
        }

        .servisbu-single-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            margin-top: 10px;
            border-radius: 12px;
            background: #22c55e;
            color: #fff;
            font-weight: 850;
            text-decoration: none;
        }

        .servisbu-single-whatsapp:hover {
            filter: brightness(0.96);
        }

        .servisbu-single-side-card {
            padding: 20px;
        }

        .servisbu-single-side-card h3 {
            margin: 0 0 10px;
            color: #111827;
            font-size: 1rem;
            font-weight: 850;
        }

        .servisbu-single-side-card a {
            display: inline-flex;
            color: var(--red-primary);
            font-weight: 800;
            text-decoration: none;
        }

        .servisbu-home-blog-grid {
            display: grid;
            grid-template-columns: repeat(var(--servisbu-blog-columns, 3), minmax(0, 1fr));
            gap: 28px;
        }

        .servisbu-home-post-card {
            min-width: 0;
        }

        .servisbu-home-post-link {
            display: block;
            height: 100%;
            overflow: hidden;
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 22px;
            color: #111827;
            text-decoration: none;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .servisbu-home-post-link:hover {
            transform: translateY(-6px);
            border-color: var(--red-100);
            box-shadow: 0 24px 55px rgba(220, 38, 38, 0.13);
        }

        .servisbu-home-post-thumb {
            aspect-ratio: 16 / 10;
            margin: 0;
            overflow: hidden;
            background: linear-gradient(135deg, var(--red-50), #fff);
        }

        .servisbu-home-post-thumb img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .servisbu-home-post-link:hover .servisbu-home-post-thumb img {
            transform: scale(1.05);
        }

        .servisbu-home-post-thumb span {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red-primary);
            font-size: 2.2rem;
        }

        .servisbu-home-post-card h3 {
            margin: 0;
            padding: 18px 22px 22px;
            color: #1f2937;
            font-size: 1.02rem;
            font-weight: 700;
            line-height: 1.36;
            letter-spacing: 0;
            transition: color 0.2s ease;
        }

        .servisbu-home-post-link:hover h3 {
            color: var(--red-primary);
        }

        @media (max-width: 1024px) {
            .servisbu-single-hero-inner,
            .servisbu-single-layout {
                grid-template-columns: 1fr;
            }

            .servisbu-single-sidebar {
                position: static;
            }

            .servisbu-home-blog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .servisbu-single-hero {
                padding: 112px 0 38px;
            }

            .servisbu-single-hero-inner {
                gap: 22px;
                margin-top: 18px;
            }

            .servisbu-single-hero h1 {
                font-size: 1.9rem;
            }

            .servisbu-single-meta {
                gap: 8px;
            }

            .servisbu-single-meta span,
            .servisbu-single-meta a {
                width: 100%;
                justify-content: flex-start;
            }

            .servisbu-single-content-wrap {
                padding: 34px 0 82px;
            }

            .servisbu-single-article {
                border-radius: 18px;
            }

            .servisbu-single-article .entry-content {
                font-size: 0.98rem;
                line-height: 1.82;
            }

            .servisbu-home-blog-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .servisbu-home-post-card h3 {
                padding: 16px 18px 18px;
                font-size: 0.98rem;
            }
        }

        .servisbu-archive-head {
            margin-bottom: 32px;
            text-align: center;
        }

        .servisbu-archive-head span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: var(--red-50);
            color: var(--red-primary);
            font-weight: 800;
            font-size: 0.88rem;
            margin-bottom: 14px;
        }

        .servisbu-archive-head h1 {
            margin: 0;
            color: #1F2937;
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 900;
            letter-spacing: 0;
        }

        .servisbu-archive-head p {
            color: #6B7280;
            max-width: 720px;
            margin: 12px auto 0;
            line-height: 1.7;
        }

        .servisbu-archive-card {
            display: grid;
            grid-template-columns: 280px minmax(0, 1fr);
            gap: 28px;
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 22px;
            padding: 18px;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
        }

        .servisbu-archive-card:hover {
            transform: translateY(-4px);
            border-color: var(--red-100);
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
        }

        .servisbu-archive-thumb {
            display: flex;
            min-height: 190px;
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--red-50), #fff);
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .servisbu-archive-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.35s ease;
        }

        .servisbu-archive-card:hover .servisbu-archive-thumb img {
            transform: scale(1.04);
        }

        .servisbu-archive-thumb span {
            width: 74px;
            height: 74px;
            border-radius: 20px;
            background: #fff;
            color: var(--red-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
        }

        .servisbu-archive-body {
            padding: 10px 8px 10px 0;
        }

        .servisbu-archive-meta {
            color: var(--red-primary);
            font-size: 0.86rem;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .servisbu-archive-body h2 {
            margin: 0 0 12px;
            font-size: clamp(1.45rem, 2vw, 2.1rem);
            line-height: 1.15;
            font-weight: 900;
            letter-spacing: 0;
            color: #1F2937;
        }

        .servisbu-archive-body h2 a {
            color: inherit;
            text-decoration: none;
        }

        .servisbu-archive-body h2 a:hover {
            color: var(--red-primary);
        }

        .servisbu-archive-excerpt {
            color: #6B7280;
            line-height: 1.75;
        }

        .servisbu-archive-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            color: var(--red-primary);
            font-weight: 900;
            text-decoration: none;
        }

        .servisbu-archive-more:hover {
            color: var(--red-dark);
        }

        @media (max-width: 900px) {
            .servisbu-archive-card {
                grid-template-columns: 1fr;
                gap: 18px;
                padding: 14px;
            }

            .servisbu-archive-thumb {
                min-height: 220px;
            }

            .servisbu-archive-body {
                padding: 4px 4px 8px;
            }
        }

        .servisbu-page-content .entry-content ul {
            padding-left: 1.2rem;
        }

        .servisbu-page-content .entry-content li::marker {
            color: var(--red-primary);
        }

        @media (max-width: 900px) {
            .servisbu-page-shell {
                padding-top: 104px;
            }

            .servisbu-page-hero-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .servisbu-page-callout {
                max-width: 360px;
            }
        }

        @media (max-width: 640px) {
            .servisbu-page-hero {
                padding: 32px 0 30px;
            }

            .servisbu-page-content-wrap {
                padding: 36px 0 72px;
            }

            .servisbu-page-content {
                border-radius: 14px;
            }
        }

        .servisbu-service-shell {
            background: #f9fafb;
            padding-top: 120px;
        }

        .servisbu-service-hero {
            position: relative;
            overflow: hidden;
            padding: 46px 0 58px;
            background: linear-gradient(135deg, #ffffff 0%, var(--red-50) 54%, var(--red-100) 100%);
            border-bottom: 1px solid var(--red-100);
        }

        .servisbu-service-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 12% 18%, rgba(220, 38, 38, 0.12), transparent 28%), radial-gradient(circle at 90% 10%, rgba(17, 24, 39, 0.08), transparent 24%);
            pointer-events: none;
        }

        .servisbu-service-hero-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 34px;
            align-items: center;
        }

        .servisbu-service-copy h1 {
            margin: 0;
            max-width: 850px;
            color: #111827;
            font-size: clamp(2rem, 4vw, 3.5rem);
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: 0;
        }

        .servisbu-service-copy p {
            max-width: 760px;
            margin: 16px 0 0;
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.75;
        }

        .servisbu-service-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 26px;
        }

        .servisbu-service-actions .btn-outline {
            color: var(--red-primary);
            border-color: var(--red-200);
            background: #fff;
        }

        .servisbu-service-actions .btn-outline:hover {
            color: #fff;
            background: var(--red-primary);
            border-color: var(--red-primary);
        }

        .servisbu-service-summary,
        .servisbu-sidebar-card {
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
        }

        .servisbu-service-summary-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            margin-bottom: 18px;
            color: #fff;
            background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
            box-shadow: 0 12px 28px rgba(220, 38, 38, 0.22);
        }

        .servisbu-service-summary strong {
            display: block;
            color: #111827;
            font-size: 1.25rem;
            font-weight: 900;
        }

        .servisbu-service-summary span {
            display: block;
            margin-top: 8px;
            color: #6b7280;
            line-height: 1.65;
        }

        .servisbu-mini-link {
            display: inline-flex;
            align-items: center;
            margin-top: 18px;
            color: var(--red-primary);
            font-weight: 800;
            text-decoration: none;
        }

        .servisbu-service-main,
        .servisbu-service-band,
        .servisbu-service-process {
            padding: 72px 0;
        }

        .servisbu-service-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 340px;
            gap: 34px;
            align-items: start;
        }

        .servisbu-service-content {
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 18px;
            padding: clamp(28px, 5vw, 54px);
            box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
        }

        .servisbu-service-featured-image {
            position: relative;
            margin: 0 0 32px;
            border-radius: 16px;
            overflow: hidden;
            background: #f3f4f6;
            box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
        }

        .servisbu-service-featured-image::after {
            content: "";
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, 0.42);
            border-radius: inherit;
            pointer-events: none;
        }

        .servisbu-service-featured-image img {
            display: block;
            width: 100%;
            height: clamp(260px, 34vw, 430px);
            object-fit: cover;
        }

        .servisbu-service-content .entry-content {
            color: #1f2937;
            font-size: 1.05rem;
            line-height: 1.85;
        }

        .servisbu-service-sidebar {
            position: sticky;
            top: 118px;
            display: grid;
            gap: 18px;
        }

        .servisbu-sidebar-card h3 {
            margin: 0 0 10px;
            color: #111827;
            font-size: 1.2rem;
            font-weight: 900;
        }

        .servisbu-sidebar-card p {
            margin: 0 0 18px;
            color: #6b7280;
            line-height: 1.65;
        }

        .servisbu-sidebar-whatsapp {
            margin-top: 10px;
            min-height: 48px;
            display: inline-flex;
            width: 100%;
            align-items: center;
            justify-content: center;
            gap: 9px;
            border-radius: 12px;
            background: #25D366;
            color: #fff;
            font-weight: 800;
            text-decoration: none;
        }

        .servisbu-sidebar-price strong {
            color: #111827;
            font-size: 2rem;
            font-weight: 900;
        }

        .servisbu-sidebar-price span {
            color: #6b7280;
            font-weight: 700;
        }

        .servisbu-sidebar-card ul {
            list-style: none;
            margin: 18px 0 0;
            padding: 0;
            display: grid;
            gap: 10px;
        }

        .servisbu-sidebar-card li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #4b5563;
            font-weight: 650;
        }

        .servisbu-sidebar-card li i {
            color: #16a34a;
        }

        .servisbu-sidebar-card li.is-muted,
        .servisbu-sidebar-card li.is-muted i {
            color: #9ca3af;
        }

        .servisbu-service-band {
            background: #fff;
        }

        .servisbu-service-section-head {
            margin-bottom: 28px;
        }

        .servisbu-service-section-head span {
            display: inline-flex;
            margin-bottom: 10px;
            padding: 7px 12px;
            border-radius: 999px;
            background: var(--red-50);
            color: var(--red-primary);
            font-size: 0.78rem;
            font-weight: 900;
        }

        .servisbu-service-section-head h2 {
            margin: 0;
            color: #111827;
            font-size: clamp(1.7rem, 3vw, 2.6rem);
            line-height: 1.15;
            font-weight: 900;
        }

        .servisbu-benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }

        .servisbu-benefit-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px;
            border-radius: 16px;
            border: 1px solid var(--red-100);
            background: linear-gradient(180deg, #fff, var(--red-50));
            color: #1f2937;
            font-weight: 800;
        }

        .servisbu-benefit-card i {
            color: var(--red-primary);
        }

        .servisbu-detail-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
        }

        .servisbu-detail-process-item {
            position: relative;
            padding: 26px;
            border-radius: 18px;
            background: #fff;
            border: 1px solid #edf0f5;
            box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
        }

        .servisbu-detail-process-item > div {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 16px;
            color: #fff;
            background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
            font-weight: 900;
        }

        .servisbu-detail-process-item h3 {
            margin: 0 0 8px;
            color: #111827;
            font-size: 1.1rem;
            font-weight: 900;
        }

        .servisbu-detail-process-item p {
            margin: 0;
            color: #6b7280;
            line-height: 1.65;
        }

        @media (max-width: 960px) {
            .servisbu-service-hero-grid,
            .servisbu-service-layout {
                grid-template-columns: 1fr;
            }

            .servisbu-service-sidebar {
                position: static;
            }
        }

        @media (max-width: 640px) {
            .servisbu-service-shell {
                padding-top: 104px;
            }

            .servisbu-service-hero {
                padding: 36px 0 42px;
            }

            .servisbu-service-main,
            .servisbu-service-band,
            .servisbu-service-process {
                padding: 46px 0;
            }
        }
