        .hero-section__container {
            position: relative;
            height: 100vh;
            background-image: url('/assets/imgs/Services.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .about{
            background-image: url('/assets/imgs/About.webp');
        }
        .General{
            background-image: url('/assets/imgs/General.webp');
            height: 90vh;
        }
        .Maintenanace{
            background-image: url('/assets/imgs/Maintenance.webp');
        }
        .hero-section__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.5);
        }
        .hero-section__content {
            position: relative;
            z-index: 2;
            color: black;
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
        }
        .hero-section__title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-section__description {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: black;
            line-height: 1.6;
        }

        .hero-section__buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-section__btn-primary {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .hero-section__btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .hero-section__btn-secondary {
            background: transparent;
            border: 2px solid var(--accent);
            color: black;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .hero-section__btn-secondary:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .hero-section__features {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .hero-section__feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .hero-section__feature-icon {
            color: var(--accent);
            font-size: 1.2rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section__title {
                font-size: 2.5rem;
            }
            
            .hero-section__description {
                font-size: 1.1rem;
            }
            
            .hero-section__buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-section__btn-primary,
            .hero-section__btn-secondary {
                width: 100%;
                max-width: 250px;
            }
        }
    /* ====== Helpers / Utilities ====== */
        .section-pad { 
            padding: 80px 0; 
        }
        
        .bg-soft { 
            background: var(--secondary); 
        }
        
        .text-muted-700 { 
            color: var(--text-muted); 
        }
        
        /* تحسينات التصميم الحديث */
        .overview-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            box-shadow: var(--glass-shadow);
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .overview-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
        }
        
        .overview-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        
        .overview-head {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--secondary-dark);
        }
        
        .badge-soft {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-sm);
            color: var(--text-dark);
            border-radius: 999px;
            padding: .35rem .75rem;
            font-size: .85rem;
            font-weight: 600;
        }
        
        .overview-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .overview-list li {
            position: relative;
            padding-right: 2rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            font-weight: 500;
        }
        
        .overview-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 0;
            color: var(--accent);
            background: var(--accent-light);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }
        
        .btn-primary-grad {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary-grad:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }
        
        .btn-accent-grad {
            background: var(--accent-gradient);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }
        
        .btn-accent-grad:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }
        
        .media-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .media-container:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-xl);
        }
        
        .media-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 70%, rgba(0,0,0,0.7));
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            color: white;
            opacity: 0;
            transition: var(--transition);
        }
        
        .media-container:hover .media-overlay {
            opacity: 1;
        }
        
        .play-btn {
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            width: 60px;
            height: 60px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .play-btn:hover {
            background: var(--primary);
            color: white;
            transform: translate(50%, -50%) scale(1.1);
        }
        
        .stats-container {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--secondary-dark);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 1.75rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }
        
        /* Animations */
        .reveal { 
            opacity: 0; 
            transform: translateY(30px); 
            transition: var(--transition); 
        }
        
        .reveal.show { 
            opacity: 1; 
            transform: none; 
        }
        
        .reveal-left { 
            opacity: 0; 
            transform: translateX(-30px); 
            transition: var(--transition); 
        }
        
        .reveal-left.show { 
            opacity: 1; 
            transform: none; 
        }
        
        .reveal-right { 
            opacity: 0; 
            transform: translateX(30px); 
            transition: var(--transition); 
        }
        
        .reveal-right.show { 
            opacity: 1; 
            transform: none; 
        }
        
        .cta-link { 
            color: var(--primary-dark); 
            text-decoration: none; 
            border-bottom: 1px dashed currentColor; 
        }
        
        .cta-link:hover { 
            color: var(--primary); 
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .section-pad {
                padding: 60px 0;
            }
            
            .overview-card {
                padding: 1.5rem;
            }
            
            .stats-container {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .stat-item {
                flex: 1 0 45%;
            }
        }
    /* ====== Section 2: تبويبات الفئات ====== */
        .section-pad { 
            padding: 80px 0; 
        }
        
        .text-muted-700 { 
            color: var(--text-muted); 
        }
        
        /* تحسينات التبويب */
        .pill-nav .nav-link {
            border-radius: 999px;
            border: 1px solid var(--secondary-dark);
            color: var(--text-dark);
            background: var(--secondary-light);
            margin: .25rem;
            transition: var(--transition);
            padding: 10px 20px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }
        
        .pill-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }
        
        .pill-nav .nav-link.active {
            color: #fff;
            background: var(--accent-gradient);
            border-color: transparent;
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        
        .pill-nav .nav-link:hover:not(.active) {
            border-color: var(--accent);
            color: var(--accent-dark);
            transform: translateY(-2px);
        }
        
        /* تحسينات كروت الخدمات */
        .category-card {
            border: 1px solid var(--secondary-dark);
            border-radius: 16px;
            background: var(--secondary-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }
        
        .category-card:hover { 
            transform: translateY(-8px); 
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }
        
        .category-card:hover::before {
            transform: scaleX(1);
        }
        
        .category-img {
            width: 100%; 
            aspect-ratio: 16/9; 
            object-fit: cover; 
            border-top-left-radius: 16px; 
            border-top-right-radius: 16px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        .category-card:hover .category-img {
            transform: scale(1.05);
        }
        
        .category-card .p-3 {
            position: relative;
            z-index: 1;
        }
        
        .cta-link { 
            color: var(--primary-dark); 
            text-decoration: none; 
            border-bottom: 1px dashed currentColor; 
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .cta-link:hover { 
            color: var(--primary); 
            border-bottom-style: solid;
        }
        
        .cta-link i {
            font-size: 0.8rem;
            transition: var(--transition);
        }
        
        .cta-link:hover i {
            transform: translateX(-3px);
        }
        
        /* تصميم خاص لتبويب عقود الشركات */
        .b2b-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            box-shadow: var(--glass-shadow);
            transition: var(--transition);
        }
        
        .b2b-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        
        .b2b-card ul {
            list-style: none;
            padding: 0;
        }
        
        .b2b-card li {
            position: relative;
            padding-right: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .b2b-card li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 0;
            color: var(--accent);
        }
        
        /* تحسينات التبويب النشط */
        .tab-pane {
            animation: fadeIn 0.5s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* تأثيرات الظهور */
        .reveal { 
            opacity: 0; 
            transform: translateY(30px); 
            transition: var(--transition); 
        }
        
        .reveal.show { 
            opacity: 1; 
            transform: none; 
        }
        
        /* شارة الخدمات المميزة */
        .premium-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--accent-gradient);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: var(--shadow-sm);
        }
        
        /* تحسينات للهواتف */
        @media (max-width: 768px) {
            .section-pad {
                padding: 60px 0;
            }
            
            .pill-nav .nav-link {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .category-card {
                margin-bottom: 1rem;
            }
        }

    /* ====== Section 3: خطوات الخدمة (Timeline) ====== */
         .section-pad { 
            padding: 80px 0; 
        }
        
        .bg-soft { 
            background: var(--secondary); 
        }
        
        .text-muted-700 { 
            color: var(--text-muted); 
        }
        
        /* تحسينات التايملاين */
        .timeline { 
            position: relative; 
            max-width: 900px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: ""; 
            position: absolute; 
            inset-inline-start: 50%; 
            top: 0; 
            bottom: 0;
            width: 3px; 
            background: var(--accent-gradient); 
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .timeline-item {
            position: relative; 
            margin: 48px 0; 
            display: flex; 
            gap: 24px; 
            align-items: flex-start;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }
        
        .timeline-item.show {
            opacity: 1;
            transform: none;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .timeline-badge {
            width: 60px; 
            height: 60px; 
            border-radius: 50%;
            background: var(--primary-gradient); 
            color: #fff; 
            display: grid; 
            place-items: center;
            box-shadow: var(--shadow-lg); 
            flex: 0 0 60px;
            font-weight: 700;
            font-size: 1.25rem;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }
        
        .timeline-item:hover .timeline-badge {
            transform: scale(1.1);
            box-shadow: var(--shadow-xl);
        }
        
        .timeline-item .card {
            border: 1px solid var(--secondary-dark); 
            border-radius: 16px; 
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            overflow: hidden;
            position: relative;
        }
        
        .timeline-item .card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }
        
        .timeline-item:hover .card {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        
        .timeline-item:hover .card::before {
            transform: scaleX(1);
        }
        
        .card-body {
            padding: 1.5rem;
        }
        
        .step-icon {
            font-size: 1.5rem;
            margin-left: 0.5rem;
        }
        
        .step-highlight {
            color: var(--primary-dark);
            font-weight: 700;
            background: linear-gradient(transparent 70%, var(--accent-light) 70%);
            padding: 0 2px;
        }
        
        .btn-primary-grad {
            background: var(--primary-gradient);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary-grad:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }
        
        .process-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .stat-box {
            text-align: center;
            padding: 1rem;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-sm);
            min-width: 150px;
            transition: var(--transition);
        }
        
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        /* تحسينات للهواتف */
        @media (max-width: 992px) {
            .timeline::before { 
                inset-inline-start: 30px; 
                transform: none; 
            }
            
            .timeline-item { 
                margin-inline-start: 60px; 
                flex-direction: row !important;
            }
            
            .timeline-item:nth-child(odd) {
                flex-direction: row;
            }
            
            .section-pad {
                padding: 60px 0;
            }
            
            .process-stats {
                gap: 1rem;
            }
            
            .stat-box {
                min-width: 120px;
            }
        }
        
        @media (max-width: 576px) {
            .timeline::before { 
                inset-inline-start: 20px; 
            }
            
            .timeline-item { 
                margin-inline-start: 40px; 
            }
            
            .timeline-badge {
                width: 50px;
                height: 50px;
                flex: 0 0 50px;
                font-size: 1rem;
            }
            
            .card-body {
                padding: 1rem;
            }
        }

    /* ====== Section 4: الضمان + التقييمات ====== */
          /* تحسينات قسم الثقة */
        .trust-wrap {
            background: radial-gradient(1000px 400px at 80% 0%, rgba(79,70,229,.15), transparent 60%),
                        linear-gradient(180deg, var(--secondary-light), var(--secondary));
            border: 1px solid var(--secondary-dark);
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            position: relative;
        }
        
        .trust-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234f46e5' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }
        
        .guarantee {
            background: var(--primary-gradient);
            color: var(--text-light);
            padding: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .guarantee::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            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.1'%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");
            opacity: 0.3;
            z-index: -1;
        }
        
        .guarantee-list {
            margin: 1.5rem 0;
        }
        
        .guarantee-list li {
            position: relative;
            padding-right: 2rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .guarantee-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 0.2rem;
            color: var(--accent-light);
            background: rgba(255, 255, 255, 0.2);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        .guarantee strong {
            color: var(--accent-light);
            font-weight: 700;
        }
        
        .btn-accent-grad {
            background: var(--accent-gradient);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-accent-grad:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }
        
        .reviews { 
            padding: 3rem; 
            background: var(--secondary-light);
            position: relative;
            z-index: 1;
        }
        
        .review-card {
            border: 1px solid var(--secondary-dark);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            min-height: 180px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .review-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 2rem;
            color: var(--primary-light);
            opacity: 0.1;
            z-index: 0;
        }
        
        .review-card:hover { 
            box-shadow: var(--shadow-lg); 
            transform: translateY(-5px);
            border-color: var(--primary-light);
        }
        
        .review-card.active { 
            box-shadow: var(--shadow-xl); 
            transform: translateY(-5px);
            border-color: var(--accent);
            position: relative;
        }
        
        .review-card.active::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-gradient);
        }
        
        .review-card .h6 {
            color: var(--primary-dark);
            font-weight: 700;
        }
        
        .review-card p {
            position: relative;
            z-index: 1;
            line-height: 1.6;
        }
        
        .review-card strong {
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .review-card small {
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        
        .review-rating {
            color: #ffc107;
            margin-bottom: 0.5rem;
        }
        
        /* تأثيرات الظهور */
        .reveal { 
            opacity: 0; 
            transform: translateY(30px); 
            transition: var(--transition); 
        }
        
        .reveal.show { 
            opacity: 1; 
            transform: none; 
        }
        
        /* تحسينات للهواتف */
        @media (max-width: 992px) {
            .section-pad {
                padding: 60px 0;
            }
            
            .guarantee,
            .reviews {
                padding: 2rem;
            }
            
            .trust-wrap {
                border-radius: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .guarantee,
            .reviews {
                padding: 1.5rem;
            }
            
            .review-card {
                min-height: auto;
                margin-bottom: 1rem;
            }
        }
/* تحسينات قسم المناطق */
#areas .bg-light {
    background: var(--secondary) !important;
}

.area-card {
    border: 1px solid var(--secondary-dark);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.area-card:hover .area-icon {
    color: var(--accent);
    transform: scale(1.1);
}

.service-highlight {
    border: 2px solid var(--primary-light);
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: 0;
}

.highlight-icon {
    font-size: 3rem;
    color: var(--accent);
}

.stats-row {
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.cta-link-lg {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: var(--transition);
    font-weight: 600;
}

.cta-link-lg:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* تحسينات التجاوب */
@media (max-width: 768px) {
    .area-card {
        padding: 1.5rem 1rem !important;
    }
    
    .area-icon {
        font-size: 1.5rem;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
    /* ====== Buttons ====== */
    .btn-primary-grad {
      background: var(--primary-gradient); border: none; color: #fff; box-shadow: var(--shadow-md);
    }
    .btn-accent-grad {
      background: var(--accent-gradient); border: none; color: #003; box-shadow: var(--shadow-md);
    }
    .btn-primary-grad:hover, .btn-accent-grad:hover { filter: brightness(1.02); transform: translateY(-1px); }
/* About Section Modern Styling */
#abouts {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

#abouts::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

#abouts::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-gradient);
    opacity: 0.02;
    border-radius: 50%;
    z-index: 0;
}

#abouts .container {
    position: relative;
    z-index: 1;
}

/* Header Styling */
#abouts h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

#abouts h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Main Content Styling */
#abouts .col-lg-7 p:first-of-type {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

#abouts strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Stats Cards Modern Design */
#abouts .card {
    border: none;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

#abouts .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

#abouts .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

#abouts .card:hover::before {
    transform: scaleX(1);
}

#abouts .card-body {
    padding: 1.5rem 1rem;
}

#abouts .card .fs-3 {
    color: var(--primary);
    transition: var(--transition);
}

#abouts .card:hover .fs-3 {
    color: var(--accent);
    transform: scale(1.1);
}

#abouts .card .fw-bold {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#abouts .card small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Badges Modern Styling */
#abouts .badge {
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid transparent;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

#abouts .badge.bg-primary-subtle {
    background: rgba(79, 70, 229, 0.1) !important;
    border-color: rgba(79, 70, 229, 0.2);
    color: var(--primary-dark) !important;
}

#abouts .badge.bg-success-subtle {
    background: rgba(6, 182, 212, 0.1) !important;
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--accent-dark) !important;
}

#abouts .badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Why We're Different Section */
#abouts aside .card {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

#abouts aside .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    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");
    opacity: 0.5;
}

#abouts aside .card-body {
    position: relative;
    z-index: 1;
}

#abouts aside h3 {
    color: white;
    position: relative;
    padding-bottom: 1rem;
}

#abouts aside h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-light);
    border-radius: 2px;
}

#abouts aside .list-unstyled li {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

#abouts aside .list-unstyled li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

#abouts aside .list-unstyled li i {
    font-size: 1.2rem;
    color: var(--accent-light);
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#abouts aside .list-unstyled li div {
    color: rgba(255, 255, 255, 0.9);
}

#abouts aside .list-unstyled li strong {
    color: white;
}

/* Local SEO Section */
#abouts .text-muted.small {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 2rem !important;
}

#abouts .link-primary {
    color: var(--primary) !important;
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    transition: var(--transition);
}

#abouts .link-primary:hover {
    color: var(--primary-dark) !important;
    border-bottom-style: solid;
}

/* Responsive Design */
@media (max-width: 768px) {
    #abouts .col-lg-7 p:first-of-type {
        padding: 1rem;
        font-size: 1rem;
    }
    
    #abouts .card-body {
        padding: 1rem 0.5rem;
    }
    
    #abouts aside .list-unstyled li {
        padding: 0.75rem;
    }
    
    #abouts aside .list-unstyled li i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    #abouts::before,
    #abouts::after {
        display: none;
    }
}
/* Audiences Section - Modern Design */
#audiences {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

#audiences::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    z-index: 0;
}

#audiences .container {
    position: relative;
    z-index: 1;
}

/* Header Styling */
#audiences h2 {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

#audiences h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

#audiences .text-muted-700 {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Card Design - Modern Glass Effect */
#audiences .card {
    border: none;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--shadow-sm),
        0 8px 32px rgba(31, 38, 135, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#audiences .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#audiences .card:hover {
    transform: translateY(-8px);
    box-shadow: 
        var(--shadow-lg),
        0 20px 40px rgba(31, 38, 135, 0.12);
}

#audiences .card:hover::before {
    transform: scaleX(1);
}

/* Card Body Styling */
#audiences .card-body {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* Icon Styling */
#audiences .card .fs-4 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    border-radius: 16px;
    margin-left: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

/* Card Header Alignment */
#audiences .card .d-flex {
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

#audiences .card h3 {
    color: var(--text-dark);
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Card Content Styling */
#audiences .card p.small {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-right: 3px solid var(--accent-light);
    padding-right: 1rem;
    background: rgba(6, 182, 212, 0.03);
    border-radius: 0 8px 8px 0;
    padding: 1rem;
}

/* List Styling - Modern Dots */
#audiences .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#audiences .card li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.9rem;
}

#audiences .card li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

#audiences .card li:last-child {
    margin-bottom: 0;
}

/* CTA Button Styling */
#audiences .btn-accent-grad {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 
        var(--shadow-md),
        0 8px 25px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#audiences .btn-accent-grad::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#audiences .btn-accent-grad:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--shadow-lg),
        0 12px 30px rgba(6, 182, 212, 0.4);
}

#audiences .btn-accent-grad:hover::before {
    opacity: 1;
}

/* Card Specific Colors */
#audiences .col-md-6.col-lg-3:nth-child(1) .card .fs-4 {
    background: var(--primary-gradient);
}

#audiences .col-md-6.col-lg-3:nth-child(2) .card .fs-4 {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

#audiences .col-md-6.col-lg-3:nth-child(3) .card .fs-4 {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

#audiences .col-md-6.col-lg-3:nth-child(4) .card .fs-4 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    #audiences .card-body {
        padding: 1.5rem 1rem;
    }
    
    #audiences .card .fs-4 {
        width: 50px;
        height: 50px;
        margin-left: 0.75rem;
        font-size: 1.2rem;
    }
    
    #audiences .btn-accent-grad {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    #audiences h2::after {
        width: 80px;
    }
}

/* Text Emphasis */
#audiences strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Section Spacing */
#audiences .text-center.mt-5 {
    margin-top: 3rem !important;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}
/* About Services Section - Modern Design */
#about-services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

#about-services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

#about-services::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-gradient);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

#about-services .container {
    position: relative;
    z-index: 1;
}

/* Header Styling */
#about-services h2 {
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

#about-services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Main Content Styling */
#about-services .col-lg-7 p:first-of-type {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Services Grid - Modern Cards */
#about-services .col-lg-7 .card {
    border: none;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

#about-services .col-lg-7 .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#about-services .col-lg-7 .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

#about-services .col-lg-7 .card:hover::before {
    transform: scaleX(1);
}

#about-services .col-lg-7 .card-body {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#about-services .col-lg-7 .card i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#about-services .col-lg-7 .card:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

#about-services .col-lg-7 .card strong {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Service Cards Specific Colors */
#about-services .col-lg-7 .card:nth-child(1) i { color: #3b82f6; }
#about-services .col-lg-7 .card:nth-child(2) i { color: #06b6d4; }
#about-services .col-lg-7 .card:nth-child(3) i { color: #ef4444; }
#about-services .col-lg-7 .card:nth-child(4) i { color: #8b5cf6; }
#about-services .col-lg-7 .card:nth-child(5) i { color: #10b981; }
#about-services .col-lg-7 .card:nth-child(6) i { color: #f59e0b; }

/* SEO Note Styling */
#about-services .small.text-muted {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 2rem !important;
    line-height: 1.6;
}

/* SmartCare Card - Premium Design */
#about-services aside .card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

#about-services aside .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

#about-services aside .card-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

#about-services aside h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

#about-services aside h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-light);
    border-radius: 2px;
}

#about-services aside .small.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* SmartCare List Styling */
#about-services aside .list-unstyled {
    margin-bottom: 2rem !important;
}

#about-services aside .list-unstyled li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#about-services aside .list-unstyled li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

#about-services aside .list-unstyled li i {
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

#about-services aside .list-unstyled li strong {
    color: white;
}

#about-services aside .list-unstyled li:last-child {
    margin-bottom: 0;
}

/* CTA Button Styling */
#about-services .btn-primary-grad {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#about-services .btn-primary-grad::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#about-services .btn-primary-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

#about-services .btn-primary-grad:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    #about-services .col-lg-7 .card-body {
        padding: 1.25rem 0.75rem;
    }
    
    #about-services aside .card-body {
        padding: 1.5rem;
    }
    
    #about-services .col-lg-7 .card i {
        font-size: 1.25rem;
    }
    
    #about-services aside .list-unstyled li {
        padding: 0.75rem;
    }
    
    #about-services::before,
    #about-services::after {
        display: none;
    }
}

/* Text Emphasis */
#about-services strong {
    color: var(--primary-dark);
    font-weight: 700;
}

#about-services aside strong {
    color: white !important;
}
/* Process & Guarantee Section - Modern Design */
#process-guarantee {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

#process-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 90% 10%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    z-index: 0;
}

#process-guarantee .container {
    position: relative;
    z-index: 1;
}

/* Header Styling */
#process-guarantee h2 {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

#process-guarantee h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Process List - Modern Design */
#process-guarantee .list-group {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
}

#process-guarantee .list-group-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#process-guarantee .list-group-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

#process-guarantee .list-group-item:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light) !important;
}

#process-guarantee .list-group-item:hover::before {
    transform: scaleY(1);
}

#process-guarantee .list-group-item:last-child {
    margin-bottom: 0;
}

/* Process Icons */
#process-guarantee .list-group-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    margin-left: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

#process-guarantee .list-group-item:hover i {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Process Content */
#process-guarantee .list-group-item strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

#process-guarantee .list-group-item .small {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Guarantee Card - Premium Design */
#process-guarantee .card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

#process-guarantee .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    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");
    opacity: 0.4;
}

#process-guarantee .card-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

#process-guarantee .card h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

#process-guarantee .card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 2px;
}

/* Guarantee List Styling */
#process-guarantee .card .list-unstyled {
    margin-bottom: 2rem;
}

#process-guarantee .card .list-unstyled li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#process-guarantee .card .list-unstyled li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

#process-guarantee .card .list-unstyled li i {
    font-size: 1.1rem;
    color: var(--accent-light);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

#process-guarantee .card .list-unstyled li strong {
    color: white;
}

#process-guarantee .card .list-unstyled li:last-child {
    margin-bottom: 0;
}

/* CTA Button Styling */
#process-guarantee .btn-primary-grad {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#process-guarantee .btn-primary-grad::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#process-guarantee .btn-primary-grad:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

#process-guarantee .btn-primary-grad:hover::before {
    opacity: 1;
}

/* Badges Styling */
#process-guarantee .badge {
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#process-guarantee .badge.bg-success-subtle {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.2);
    color: #065f46 !important;
}

#process-guarantee .badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    #process-guarantee .list-group-item {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    #process-guarantee .list-group-item i {
        width: 45px;
        height: 45px;
        margin-left: 0.75rem;
        font-size: 1rem;
    }
    
    #process-guarantee .card-body {
        padding: 1.5rem;
    }
    
    #process-guarantee .card .list-unstyled li {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    #process-guarantee .btn-primary-grad {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    #process-guarantee .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Text Emphasis */
#process-guarantee strong {
    color: var(--primary-dark);
    font-weight: 700;
}

#process-guarantee .card strong {
    color: white !important;
}
#faq {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
#faq::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    z-index: 0;
}
#faq .container {
    position: relative;
    z-index: 1;
}
#faq .text-center h2 {
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
#faq .text-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}
#faq .text-center .text-muted {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation Pills - Modern Design */
#faq .nav-pills {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.75rem;
    box-shadow: var(--shadow-sm);
}
#faq .nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#faq .nav-link:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

#faq .nav-link.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

#faq .nav-link i {
    font-size: 0.8rem;
}
#faq .card {
    border: none;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}
#faq .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

#faq .card-body {
    padding: 2rem;
}

#faq .card h2 {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-dark);
}
#faq .card h2 i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Accordion Modern Styling */
#faq .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 1rem;
}

#faq .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--secondary-dark);
    border-radius: 0 !important;
}

#faq .accordion-item:last-child {
    border-bottom: none;
}

#faq .accordion-button {
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-shadow: none;
    padding: 1.25rem 0;
    position: relative;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: transparent;
    box-shadow: none;
}

#faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

#faq .accordion-button:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

#faq .accordion-collapse {
    border: none;
}

#faq .accordion-body {
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 0 1rem 0;
    border-left: 3px solid var(--accent-light);
    padding-left: 1rem;
    margin-left: 0.5rem;
    background: rgba(6, 182, 212, 0.03);
    border-radius: 0 8px 8px 0;
}

#faq .accordion-body strong {
    color: var(--primary-dark);
}

/* Active Category Highlight */
#faq .card:target {
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    #faq .card-body {
        padding: 1.5rem;
    }
    
    #faq .nav-pills {
        border-radius: 16px;
        padding: 0.5rem;
    }
    
    #faq .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    #faq .accordion-button {
        padding: 1rem 0;
        font-size: 0.95rem;
    }
    
    #faq .text-center h1 {
        font-size: 1.5rem;
    }
}

/* Animation for Card Entrance */
#faq .col-lg-6 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

#faq .col-lg-6.show {
    opacity: 1;
    transform: translateY(0);
}
#maintenance-grid {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}
#maintenance-grid .container {
    position: relative;
    z-index: 1;
}

/* Header Styling */
#maintenance-grid .d-flex {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}
#maintenance-grid h2 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.75rem;
    position: relative;
}

#maintenance-grid h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

#maintenance-grid .btn-outline-secondary {
    border: 2px solid #cbd5e1;
    color: #475569;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

#maintenance-grid .btn-outline-secondary:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Card Styling */
#maintenance-grid .card {
    border: none;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
#maintenance-grid .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
#maintenance-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#maintenance-grid .card:hover::before {
    transform: scaleX(1);
}

#maintenance-grid .card-body {
    padding: 1.5rem;
}
#maintenance-grid .d-flex.align-items-center {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

#maintenance-grid .card h3 {
    color: #1e293b;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

/* Card Content */
#maintenance-grid .card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

#maintenance-grid .card p strong {
    color: #1e293b;
    font-weight: 600;
}

/* Common Problems */
#maintenance-grid .small.fw-bold {
    color: #374151;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

#maintenance-grid .list-inline {
    margin-bottom: 1rem;
}

#maintenance-grid .list-inline-item.badge {
    width: auto;
    height: auto;
    background: #f8fafc !important;
    color: #475569 !important;
    border: 1px solid #e2e8f0;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}
#maintenance-grid .list-inline-item.badge:hover {
    background: #3b82f6 !important;
    color: white !important;
    border-color: #3b82f6;
    transform: translateY(-1px);
}

/* Services List */
#maintenance-grid .card ul {
    margin-bottom: 1.25rem;
}

#maintenance-grid .card ul li {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    position: relative;
    padding-right: 1rem;
}

#maintenance-grid .card ul li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    right: 0;
}
/* Brands Navigation */
#maintenance-grid nav.small {
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

#maintenance-grid .text-muted {
    color: #94a3b8 !important;
    font-size: 0.8rem;
}

#maintenance-grid .link-primary {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

#maintenance-grid .link-primary:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Card Footer */
#maintenance-grid .card-footer {
    padding: 0 1.5rem 1.5rem;
}
#maintenance-grid .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

#maintenance-grid .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Responsive Design */
@media (max-width: 768px) {
    #maintenance-grid .d-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    #maintenance-grid h2::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    #maintenance-grid .card-body {
        padding: 1.25rem;
    }
    
    #maintenance-grid .card-footer {
        padding: 0 1.25rem 1.25rem;
    }
    
    #maintenance-grid .badge {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}


