/* Enhanced Services Page Styles */

/* Global Styles */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Enhanced Hero Section */
.services-hero-section {
    background: linear-gradient(135deg, #198754 0%, #20c997 50%, #28a745 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroGrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroGrid)"/></svg>');
    opacity: 0.3;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: heroFloat 15s ease-in-out infinite;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #20c997, #17a2b8);
    top: 20%;
    right: 10%;
    animation-delay: 3s;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.hero-shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #e83e8c, #6f42c1);
    bottom: 30%;
    right: 20%;
    animation-delay: 9s;
}

.hero-shape-5 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffffff, #e9ecef);
    top: 60%;
    left: 8%;
    animation-delay: 12s;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.2);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(0.8);
        opacity: 0.15;
    }
    75% {
        transform: translateY(-35px) rotate(270deg) scale(1.1);
        opacity: 0.25;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.hero-btn-secondary {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
    border: none;
}

.hero-btn-secondary:hover {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    color: white;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.3) 0%, rgba(32, 201, 151, 0.3) 100%);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: cardFloat 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-card i {
    font-size: 1.5rem;
    color: #198754;
}

.floating-card span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40%;
    left: -15%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Services Grid Section */
.services-grid-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servicesGrid" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(25,135,84,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23servicesGrid)"/></svg>');
    opacity: 0.4;
}

.services-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 135, 84, 0.3);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
}

.services-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #2c3e50 0%, #198754 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #198754, transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #198754, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.services-grid {
    position: relative;
    z-index: 2;
}

.enhanced-service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.enhanced-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-service-card:hover::before {
    opacity: 1;
}

.enhanced-service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: rgba(25, 135, 84, 0.3);
}

.enhanced-service-card.featured {
    border: 2px solid #ffc107;
    transform: scale(1.05);
}

.enhanced-service-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.service-card-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.service-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    color: #198754;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: iconGlow 2s ease-in-out infinite;
}

.enhanced-service-card:hover .icon-glow {
    opacity: 1;
}

@keyframes iconGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.service-card-body {
    padding: 0 2rem 1rem 2rem;
    flex-grow: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #495057;
}

.service-features i {
    color: #198754;
    font-size: 0.8rem;
    width: 16px;
}

.service-card-footer {
    padding: 1rem 2rem 2rem 2rem;
    text-align: center;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #198754, #20c997);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::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.6s ease;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    background: linear-gradient(135deg, #20c997, #198754);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.3);
    color: white;
    text-decoration: none;
}

/* KYC Process Section */
.kyc-process-section {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: white;
}

.kyc-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.kyc-floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: kycFloat 12s ease-in-out infinite;
    opacity: 0.1;
}

.kyc-shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.kyc-shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

.kyc-shape-3 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #e83e8c, #6f42c1);
    top: 60%;
    right: 8%;
    animation-delay: 8s;
}

@keyframes kycFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.2;
    }
}

.kyc-image-container {
    position: relative;
    z-index: 2;
}

.kyc-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.kyc-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.kyc-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(25, 135, 84, 0.3) 100%);
}

.kyc-stats-card {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.kyc-stats-card .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
}

.kyc-stats-card .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #198754, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.kyc-stats-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #198754;
}

.kyc-stats-card .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.kyc-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.kyc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.kyc-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.kyc-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.kyc-steps {
    margin-bottom: 2.5rem;
}

.kyc-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.kyc-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.step-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.step-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.step-details p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.kyc-benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kyc-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: white;
}

.benefit-item i {
    color: #ffc107;
    font-size: 1rem;
}

.kyc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.kyc-btn-primary:hover {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    color: white;
    text-decoration: none;
}

/* Rewards Section */
.rewards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.rewards-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="rewardsGrid" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(25,135,84,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23rewardsGrid)"/></svg>');
    opacity: 0.4;
}

.rewards-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.rewards-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 135, 84, 0.3);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
}

.rewards-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #2c3e50 0%, #198754 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rewards-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rewards-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rewards-grid {
    position: relative;
    z-index: 2;
}

.enhanced-reward-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
}

.enhanced-reward-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.enhanced-reward-card.featured {
    border: 2px solid #ffc107;
    transform: scale(1.05);
}

.enhanced-reward-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.reward-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.reward-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.enhanced-reward-card:hover .reward-image {
    transform: scale(1.1);
}

.reward-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.3) 0%, rgba(32, 201, 151, 0.3) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.reward-badge {
    background: linear-gradient(135deg, #198754, #20c997);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.reward-content {
    padding: 2rem;
}

.reward-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #198754, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.reward-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.reward-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reward-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #495057;
}

.feature-item i {
    color: #198754;
    font-size: 0.9rem;
    width: 16px;
}

.rewards-cta {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.rewards-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.rewards-cta p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.rewards-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #198754, #20c997);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(25, 135, 84, 0.3);
}

.rewards-cta-btn:hover {
    background: linear-gradient(135deg, #20c997, #198754);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(25, 135, 84, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title,
    .services-title,
    .rewards-title {
        font-size: 3rem;
    }
    
    .kyc-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .services-hero-section {
        padding: 100px 0 60px 0;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-cards {
        display: none;
    }
    
    .kyc-content {
        padding-left: 0;
        margin-top: 3rem;
        text-align: center;
    }
    
    .kyc-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .kyc-step::after {
        display: none;
    }
    
    .step-content {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 80px 0 40px 0;
    }
    
    .hero-title,
    .services-title,
    .rewards-title {
        font-size: 2.5rem;
    }
    
    .kyc-title {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .services-subtitle,
    .rewards-subtitle,
    .kyc-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary,
    .kyc-btn-primary,
    .rewards-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .enhanced-service-card,
    .enhanced-reward-card {
        margin-bottom: 2rem;
    }
    
    .service-card-header,
    .service-card-body,
    .service-card-footer {
        padding: 1.5rem;
    }
    
    .reward-content {
        padding: 1.5rem;
    }
    
    .kyc-stats-card {
        position: static;
        margin-top: 2rem;
    }
    
    .hero-floating-shape,
    .kyc-floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title,
    .services-title,
    .rewards-title {
        font-size: 2rem;
    }
    
    .kyc-title {
        font-size: 1.8rem;
    }
    
    .rewards-cta h3 {
        font-size: 2rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .reward-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}