/* Modern Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    margin-bottom: 24px;
}

.feature-icon-hexagon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5e17eb 0%, #ffc107 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.feature-icon-hexagon i {
    font-size: 32px;
    color: #ffffff;
}

.feature-icon-hexagon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Easy Steps Section */
.easy-steps-section {
    background: #5e17eb;
    color: #ffffff;
}

.easy-step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-icon-circle i {
    font-size: 32px;
    color: #ffffff;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.step-description {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    background: #1a1d29;
    color: #ffffff;
}

.why-choose-card {
    background: #2d3748;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    background: #374151;
}

.choose-icon {
    margin-bottom: 20px;
}

.choose-icon i {
    font-size: 40px;
    color: #3b82f6;
}

.choose-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.choose-description {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Services Platform Section */
.services-platform-section {
    background: #f8fafc;
}

.platform-service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.platform-service-item:nth-child(2) {
    border-left-color: #f59e0b;
}

.platform-service-item:nth-child(3) {
    border-left-color: #06b6d4;
}

.service-icon {
    margin-right: 16px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: #ef4444;
}

.platform-service-item:nth-child(2) .service-icon i {
    color: #f59e0b;
}

.platform-service-item:nth-child(3) .service-icon i {
    color: #06b6d4;
}

.service-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.service-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.platform-image {
    text-align: center;
}

.platform-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Top Services Section */
.top-services-section {
    background: #000c4c;
    color: #ffffff;
}

.top-service-card {
    background: #2d3748;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.top-service-card:hover {
    background: #374151;
    transform: translateY(-2px);
}

.top-service-card .service-icon {
    margin-right: 16px;
    flex-shrink: 0;
}

.top-service-card .service-icon i {
    font-size: 24px;
}

.top-service-card:nth-child(4n+1) .service-icon i { color: #e91e63; }
.top-service-card:nth-child(4n+2) .service-icon i { color: #ff5722; }
.top-service-card:nth-child(4n+3) .service-icon i { color: #00bcd4; }
.top-service-card:nth-child(4n+4) .service-icon i { color: #3f51b5; }

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffc107;
}

.section-subtitle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-card, .easy-step-card, .why-choose-card {
        margin-bottom: 20px;
    }
    
    .platform-service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0 !important;
        margin-bottom: 12px;
    }
    
    .top-service-card {
        justify-content: center;
        text-align: center;
    }
}

/* Professional Footer Upgrade */
.professional-footer {
    background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
    position: relative;
}

.professional-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5e17eb, transparent);
}

.enhanced-widget {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.enhanced-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 23, 235, 0.2);
}

.gradient-title {
    background: linear-gradient(45deg, #f8f9fa, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.gradient-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #5e17eb, #ffc107);
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
}

.enhanced-social {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.social-link-modern {
    width: 45px;
    height: 45px;
    background: rgba(94, 23, 235, 0.1);
    border: 2px solid rgba(94, 23, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-modern:hover {
    background: #ffc107;
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(94, 23, 235, 0.4);
}

.footer-links-modern {
    list-style: none;
    padding: 0;
}

.footer-links-modern li {
    margin-bottom: 12px;
}

.footer-link-hover {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-link-hover::before {
    content: '▶';
    font-size: 8px;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffc107;
}

.footer-link-hover:hover {
    color: #ffc107;
    transform: translateX(8px);
}

.footer-link-hover:hover::before {
    opacity: 1;
}

.modern-contact {
    list-style: none;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cbd5e1;
    padding: 8px 0;
}

.contact-item i {
    width: 20px;
    margin-right: 12px;
    color: #ffc107;
    font-size: 14px;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffc107;
}
@media (min-width: 992px) {
    .col-lg-3 {
        flex: auto;
    }
}
/* Top Services Inline Layout */
.top-services-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.top-services-section .col-lg-3 {
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 0;
}

.top-service-card {
    background: #2d3748;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
}

.top-service-card:hover {
    background: #374151;
    transform: translateY(-2px);
}

.top-service-card .service-icon {
    margin: 0;
    flex-shrink: 0;
}

.top-service-card .service-icon i {
    font-size: 20px;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 768px) {
    .top-services-section .row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .top-service-card {
        justify-content: center;
        min-width: 200px;
    }
}