    /* ==================================================== */
/* HERO SECTION - PREMIUM STYLES                       */
/* ==================================================== */

.hero {
    position: relative;
    background: black;
    background-attachment: fixed;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    margin: 2rem auto;
    border-radius: 24px;
    border: 1px solid rgba(0, 177, 64, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 177, 64, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: min(1200px, 95vw);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 177, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 94, 42, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Title Styling */
.transfer-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00b140 0%, #0a5e2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 4px 12px rgba(0, 177, 64, 0.2);
}

/* Description */
.hero-content > p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Features List */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 800px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: left;
}

.hero-features li:hover {
    background: rgba(0, 177, 64, 0.1);
    border-color: rgba(0, 177, 64, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 177, 64, 0.15);
}

.hero-features li::before {
    content: '✓';
    color: #00b140;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00b140 0%, #0a5e2a 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 2rem auto;
    box-shadow: 
        0 8px 20px rgba(0, 177, 64, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 32px rgba(0, 177, 64, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

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

.cta-btn:hover::after {
    left: 100%;
}

/* Micro FAQ */
.micro-qa {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: left;
    backdrop-filter: blur(10px);
}

.micro-qa h2 {
    font-size: 1.5rem;
    color: #00b140;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.micro-qa h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00b140, transparent);
}

.micro-qa p {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border-left: 3px solid #00b140;
    line-height: 1.6;
}

.micro-qa strong {
    color: #00b140;
    font-weight: 700;
}

/* Route Info Section */
.route-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0rem;
    padding: 1rem;
    background: black;
    border-radius: 16px;
    border: 2px solid white;
}

.route-info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 250px;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid white;
}

.route-info-item svg {
    width: 24px;
    height: 24px;
    color: white;
    flex-shrink: 0;
}

.route-info-item span {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.route-info-item strong {
    color: white;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
        margin: 1rem auto;
        border-radius: 16px;
        background-attachment: scroll;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
    
    .route-info {
        flex-direction: column;
        gap: 1rem;
        padding: 1.4rem;
        color:white;
    }
    
    .route-info-item {
        min-width: 100%;
        color:white;
    }
    
    .micro-qa {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .transfer-title {
        font-size: 1.5rem;
    }
    
    .hero-content > p {
        font-size: 1rem;
    }
    
    .hero-features li {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .cta-btn {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .micro-qa {
        padding: 1rem;
    }
    
    .micro-qa h2 {
        font-size: 1.25rem;
    }
}

/* Animation for fade-in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transfer-title,
.hero-content > p,
.hero-features,
.cta-btn,
.micro-qa,
.route-info {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-features { animation-delay: 0.1s; }
.cta-btn { animation-delay: 0.2s; }
.micro-qa { animation-delay: 0.3s; }
.route-info { animation-delay: 0.4s; }

/* Print Styles */
@media print {
    .hero {
        background: none !important;
        border: 2px solid #000;
        box-shadow: none !important;
    }
    
    .cta-btn {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #000 !important;
    }
    
    .hero-features li::before {
        color: #000 !important;
    }
}