  /* Services page specific styles – matching premium design */
        .page-header {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
            padding: 140px 0 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .page-header::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(239,191,4,0.12), transparent 50%);
            pointer-events: none;
        }
        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin-bottom: 16px;
        }
        .page-header p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: #0a0f1c;
        }
        .section-header p {
            font-size: 16px;
            color: #6b7280;
        }
        .service-hero {
            background: #f8fafc;
            text-align: center;
        }
        .service-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .service-hero-content h2 {
            color: #0a0f1c;
        }
        .services-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
        }
        .tab-btn {
            padding: 10px 24px;
            background: #f3f4f6;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 14px;
        }
        .tab-btn.active, .tab-btn:hover {
            background: #25D366;
            color: white;
        }
        .services-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        .service-detail {
            display: none;
            animation: fadeIn 0.3s ease;
        }
        .service-detail.active {
            display: block;
        }
        .service-detail h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 20px;
        }
        .service-features {
            list-style: none;
            margin: 20px 0;
        }
        .service-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .service-features i {
            color: #25D366;
        }
        .property-types {
            margin: 20px 0;
        }
        .type-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        .type-list span {
            background: rgba(37,211,102,0.1);
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 13px;
        }
        .service-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 35px -8px rgba(0,0,0,0.1);
        }
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .process-step {
            background: white;
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            border: 1px solid #f1f5f9;
            position: relative;
        }
        .step-number {
            width: 40px;
            height: 40px;
            background: #EFBF04;
            color: #0a0f1c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            margin: 0 auto 16px;
        }
        .step-icon {
            font-size: 32px;
            color: #25D366;
            margin-bottom: 16px;
        }
        .whySwiper {
            margin-top: 40px;
            padding-bottom: 50px;
        }
        .advantage-card {
            background: #0a0f1c;
            border-radius: 24px;
            padding: 32px;
            text-align: center;
            color: white;
            height: 100%;
        }
        .advantage-icon {
            font-size: 48px;
            color: #EFBF04;
            margin-bottom: 20px;
        }
        .advantage-card h3 {
            color: #EFBF04;
            margin-bottom: 12px;
        }
        .advantage-card p {
            color: #cbd5e1;
        }
        .diaspora-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .diaspora-features {
            list-style: none;
            margin-top: 20px;
        }
        .diaspora-features li {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .diaspora-features i {
            color: #25D366;
            font-size: 20px;
        }
        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            min-height: 350px;
        }
        .testimonial {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.04);
            border: 1px solid #f1f5f9;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .testimonial.active {
            opacity: 1;
            transform: translateY(0);
            position: relative;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 20px;
        }
        .stars .star {
            color: #EFBF04;
            font-size: 20px;
        }
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 24px;
        }
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .cta-section {
            background: #0a0f1c;
            color: white;
            text-align: center;
            padding: 60px 0;
        }
        .cta-section h2 {
            color: #EFBF04;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 992px) {
            .services-content, .diaspora-content { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .service-image { order: -1; margin-top: 0; }
        }
        @media (max-width: 768px) {
            .page-header h1 { font-size: 36px; }
            .process-steps { grid-template-columns: 1fr; }
            .services-tabs { gap: 8px; }
            .tab-btn { padding: 8px 16px; font-size: 12px; }
            .section-padding { padding: 50px 0; }
        }