/* SPMB Ultra-Premium Standalone Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --spmb-primary: #0f172a;
    --spmb-secondary: #2563eb;
    --spmb-accent: #f59e0b;
    --spmb-bg: #f8fafc;
    --spmb-white: #ffffff;
    --spmb-text-main: #1e293b;
    --spmb-text-muted: #64748b;
    --spmb-glass: rgba(255, 255, 255, 0.7);
    --spmb-glass-border: rgba(255, 255, 255, 0.3);
    --spmb-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --spmb-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --spmb-radius-xl: 24px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--spmb-bg);
    color: var(--spmb-text-main);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Luxury Background Layers */
.spmb-premium-body {
    position: relative;
}

.spmb-premium-body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    z-index: -1;
}

/* Glass Floating Navigation */
.spmb-nav-container {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--spmb-glass-border);
    border-radius: 50px;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spmb-nav-container:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    top: 20px;
}

/* Ultra Hero Section */
.spmb-hero-section {
    position: relative;
    min-height: 100vh;
    background-image:
        linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.4) 100%),
        url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.spmb-hero-content {
    max-width: 900px;
}

.spmb-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -3px;
    line-height: 1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .spmb-hero-content h1 {
        font-size: 3rem;
    }
}

.spmb-hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.4;
}

/* Floating Card System */
.spmb-main-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    margin-top: -200px;
    position: relative;
    z-index: 100;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.5s ease;
}

.spmb-main-card:hover {
    transform: translateY(-5px);
}

.spmb-card-header-accent {
    height: 8px;
    background: var(--spmb-gradient);
}

.spmb-content-padding {
    padding: 60px;
}

/* Typography & Display */
h2.spmb-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--spmb-primary);
}

.spmb-feature-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--spmb-secondary);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Premium Form Elements */
.form-group-premium {
    margin-bottom: 32px;
}

.spmb-form-label {
    font-weight: 700;
    color: var(--spmb-text-main);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spmb-input-fancy {
    height: 64px;
    border-radius: 18px;
    border: 2px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.5);
    padding: 0 24px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.spmb-input-fancy:focus {
    border-color: var(--spmb-secondary);
    background: white;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
    outline: none;
    transform: scale(1.01);
}

/* Button & CTAs */
.spmb-btn-glow {
    background: var(--spmb-gradient);
    color: white;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.4);
}

.spmb-btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.5);
}

/* Micro-Interactions */
.spmb-benefit-card {
    padding: 32px;
    border-radius: 24px;
    background: white;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.spmb-benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--spmb-secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.spmb-icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: var(--spmb-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.4s;
}

.spmb-benefit-card:hover .spmb-icon-box {
    background: var(--spmb-secondary);
    color: white;
    transform: rotate(-10deg);
}

/* Utility Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

/* Map Picker Premium */
.map-picker-container {
    padding: 40px;
    border-radius: 24px;
    background: #f8fafc;
    border: 3px dashed #cbd5e1;
    text-align: center;
    transition: all 0.3s;
}

.map-picker-container.verified {
    border-style: solid;
    border-color: #22c55e;
    background: #f0fdf4;
}