/* Extracted from: /pages/services/index.htm */
/* Modern Minimalist Services Page Styles */
        .services-hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 40px;
        }

        .services-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 15px;
        }

        .services-hero p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Modern Grid Layout */
        .services-grid-page {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        /* Modern Service Card with Glassmorphism */
        .service-card-item.minimalist {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            height: 360px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
            position: relative;
        }

        .service-card-item.minimalist::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), #e85018);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card-item.minimalist:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-color: rgba(255, 107, 53, 0.2);
        }

        .service-card-item.minimalist:hover::before {
            opacity: 1;
        }

        /* Service Header */
        .service-header {
            padding: 18px 20px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(249, 250, 251, 0.8));
            border-bottom: 1px solid rgba(243, 244, 246, 0.8);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-icon-img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
            transition: transform 0.3s;
        }

        .service-card-item.minimalist:hover .service-icon-img {
            transform: scale(1.1) rotate(5deg);
        }

        .service-name-min {
            font-size: 1.05rem;
            font-weight: 700;
            color: #111827;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            letter-spacing: -0.02em;
        }

        /* Country List - Responsive & Visible */
        .country-list-min {
            flex: 1;
            overflow-y: auto;
            padding: 0;
            background: #fff;
        }

        .country-list-min::-webkit-scrollbar {
            width: 5px;
        }

        .country-list-min::-webkit-scrollbar-track {
            background: #f9fafb;
        }

        .country-list-min::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 10px;
        }

        .country-list-min::-webkit-scrollbar-thumb:hover {
            background: #9ca3af;
        }

        .country-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 11px 20px;
            border-bottom: 1px solid #f3f4f6;
            font-size: 0.9rem;
            transition: background 0.15s;
        }

        .country-row:hover {
            background-color: #f9fafb;
        }

        .country-row:last-child {
            border-bottom: none;
        }

        .c-info {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #4b5563;
            flex: 1;
            min-width: 0;
        }

        .c-name {
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 0.88rem;
        }

        .c-price {
            font-weight: 700;
            color: var(--primary-color);
            background: rgba(255, 107, 53, 0.08);
            padding: 5px 10px;
            border-radius: 7px;
            font-size: 0.87rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Modern Buy Button */
        .btn-buy-min {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color) 0%, #e85018 100%);
            color: white;
            padding: 15px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .btn-buy-min::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-buy-min:hover::before {
            left: 100%;
        }

        .btn-buy-min:hover {
            opacity: 0.92;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        /* SEO Text Section */
        .seo-content-section {
            background: #fff;
            padding: 60px 40px;
            border-radius: 24px;
            margin-top: 40px;
            border: 1px solid var(--border-color);
        }

        .seo-content-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .seo-content-section p {
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 15px;
        }
