
/* Premium UI Design for JimRec */

:root {
    --premium-primary: #10b981;
    --premium-secondary: #0f172a;
    --premium-accent: #fbbf24;
    --premium-glass: rgba(255, 255, 255, 0.05);
    --premium-glass-border: rgba(255, 255, 255, 0.1);
    --premium-dark: #020617;
}

/* Hero Banner Redesign */
.hero-banner-premium {
    position: relative;
    padding: 120px 0 100px;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent),
                linear-gradient(rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95)),
                url('../../../images/hero-premium.png') center/cover no-repeat;
    overflow: hidden;
    color: #fff;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-banner-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/grid-pattern.svg') center/cover;
    opacity: 0.1;
    pointer-events: none;
}

.hero-content-premium h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: linear-gradient(to bottom right, #fff 60%, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content-premium h1 span {
    color: var(--premium-primary);
    -webkit-text-fill-color: initial;
    display: block;
}

.hero-content-premium p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Glassmorphism Form Card - Slim Hero Version */
.premium-form-card.hero-slim {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: #333;
    max-width: 400px;
    margin-left: auto;
}

.premium-form-card.hero-slim .h1 {
    color: #020617 !important;
    font-size: 1.75rem;
    margin-bottom: 5px;
}

.premium-form-card.hero-slim .text-muted {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.premium-form-card.hero-slim .form-label {
    display: none; /* Hide labels for slim look, use placeholders */
}

.premium-form-card.hero-slim .form-control, 
.premium-form-card.hero-slim .form-select {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px 15px;
    color: #333;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.premium-form-card.hero-slim .form-control:focus {
    background: #fff;
    border-color: var(--premium-primary);
    box-shadow: none;
}

.premium-form-card.hero-slim .form-control::placeholder {
    color: #94a3b8;
}

.premium-form-card.hero-slim .premium-btn {
    background: var(--premium-primary); /* Green like brand */
    color: #fff;
    border-radius: 6px;
    font-weight: 800;
    margin-top: 10px;
    border: none;
    padding: 16px;
}

.premium-form-card.hero-slim .premium-btn:hover {
    background: var(--theme-primary-dark);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Intl-Tel-Input Slim Styles */
.iti { width: 100%; margin-bottom: 15px; }
.iti__country-list { color: #333; }
.premium-form-card.hero-slim .form-control.iti-phone { margin-bottom: 0; }

.premium-btn {
    background: var(--premium-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    background: #059669;
}

.premium-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

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

/* Stats Badges */
.premium-stats-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item-premium {
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.stat-item-premium:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.stat-item-premium h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.stat-item-premium p {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.floating-visual {
    position: relative;
    z-index: 1;
}

.floating-visual img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    color: var(--premium-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.badge-premium i {
    margin-right: 8px;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .hero-banner-premium {
        padding: 40px 0 60px; /* Reduced top space */
        text-align: center;
        min-height: auto;
    }
    .hero-content-premium p {
        margin-left: auto;
        margin-right: auto;
    }
    .premium-form-card {
        margin-top: 40px;
        padding: 30px;
    }
    .hero-content-premium h1 {
        font-size: 2.2rem;
        margin-top: 20px;
    }
}
