/* Override navbar background color for signup page */
.navbar.is-light {
    background-color: #ffffff !important;
}

/* mobile separator element */
.highlight-box {
    background-color: white;
    border-radius: 20px;
    border: 2px solid #d1eaff;
    padding: 1rem;
}

.hero-gradient {
    background: linear-gradient(to bottom, #ffffff, #f2f9ff);
    width: 100%;
}

/* ============================================
   HERO SECTION WITH MAP-STYLE CATEGORY ICONS
   ============================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f4ff 50%, #f0f8ff 100%);
    min-height: 600px;
}

/* Map-style grid overlay to suggest geographic distribution */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(50, 115, 220, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50, 115, 220, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* Animated gradient background layer */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Container for floating icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Base style for static icons (map pins) */
.float-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 2px solid rgba(50, 115, 220, 0.2);
    opacity: 0.35; /* More transparent on desktop */
    transition: all 0.3s ease;
}

/* Add a subtle pin effect */
.float-icon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: rgba(50, 115, 220, 0.3);
    border-radius: 2px;
}

.float-icon i {
    font-size: 24px;
    color: #3273dc;
}

.float-icon:hover {
    opacity: 0.8;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
    border-color: rgba(50, 115, 220, 0.4);
}

/* Individual icon positions - symmetrical distribution */
/* Left side icons mirrored to right side for balanced placement */

/* Left side icons */
.icon-1 {
    top: 7%;
    left: 12%;
}

.icon-3 {
    top: 23%;
    left: 8%;
}

.icon-5 {
    top: 39%;
    left: 18%;
}

.icon-8 {
    top: 55%;
    left: 10%;
}

.icon-13 {
    top: 79%;
    left: 15%;
}

.icon-17 {
    top: 83%;
    left: 5%;
}

.icon-2 {
    top: 15%;
    left: 35%;
}

.icon-18 {
    top: 27%;
    left: 28%;
}

.icon-21 {
    top: 51%;
    left: 32%;
}

.icon-9 {
    top: 63%;
    left: 38%;
}

.icon-15 {
    top: 95%;
    left: 25%;
}

/* Right side icons - mirrored positions */
.icon-10 {
    top: 7%;
    right: 12%;
}

.icon-4 {
    top: 23%;
    right: 8%;
}

.icon-6 {
    top: 39%;
    right: 18%;
}

.icon-11 {
    top: 55%;
    right: 10%;
}

.icon-16 {
    top: 79%;
    right: 15%;
}

.icon-20 {
    top: 83%;
    right: 5%;
}

.icon-12 {
    top: 15%;
    right: 35%;
}

.icon-19 {
    top: 27%;
    right: 28%;
}

.icon-22 {
    top: 51%;
    right: 32%;
}

.icon-14 {
    top: 63%;
    right: 38%;
}

.icon-7 {
    top: 95%;
    right: 25%;
}

/* Removed all floating animations - icons are now static like map pins */

/* Ensure content is above the floating icons */
.hero-section .section {
    position: relative;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Mobile optimizations - icons surround the form on all sides */
@media screen and (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    
    /* Keep map grid visible on mobile */
    .hero-section::before {
        background-size: 40px 40px; /* Smaller grid for mobile */
    }
    
    /* Position background to cover entire hero section */
    .hero-background {
        position: absolute;
        height: 100%;
        margin-top: 0;
    }
    
    /* Hide desktop-only icons on mobile */
    .desktop-only {
        display: none;
    }
    
    .float-icon {
        width: 45px;
        height: 45px;
        opacity: 0.25;
    }
    
    .float-icon i {
        font-size: 18px;
    }
    
    /* All 12 icons visible on mobile - positioned around all sides of the form */
    /* Icons ABOVE the form - 3 icons, 1/4 off viewport (3/4 visible) */
    .icon-1 { top: -11px; left: 15%; right: auto; opacity: 0.25; } /* 1/4 off top */
    .icon-2 { top: -11px; left: 50%; right: auto; transform: translateX(-50%); opacity: 0.25; } /* 1/4 off top */
    .icon-7 { top: -11px; right: 15%; left: auto; opacity: 0.25; } /* 1/4 off top */
    
    /* Icons on LEFT side - quarter off viewport */
    .icon-3 { top: 25%; left: -11px; right: auto; opacity: 0.25; } /* Quarter of icon width off screen */
    .icon-10 { top: 45%; left: -11px; right: auto; opacity: 0.25; }
    .icon-5 { top: 65%; left: -11px; right: auto; opacity: 0.25; }
    
    /* Icons on RIGHT side - quarter off viewport */
    .icon-4 { top: 25%; right: -11px; left: auto; opacity: 0.25; } /* Quarter of icon width off screen */
    .icon-8 { top: 45%; right: -11px; left: auto; opacity: 0.25; }
    .icon-6 { top: 65%; right: -11px; left: auto; opacity: 0.25; }
    
    /* Icons BELOW the form - 3 icons, 1/4 off viewport (3/4 visible) */
    .icon-9 { bottom: -11px; left: 15%; right: auto; opacity: 0.25; top: auto; } /* 1/4 off bottom */
    .icon-11 { bottom: -11px; right: 15%; left: auto; opacity: 0.25; top: auto; } /* 1/4 off bottom */
    .icon-12 { bottom: -11px; left: 50%; right: auto; transform: translateX(-50%); opacity: 0.25; top: auto; } /* 1/4 off bottom */
}

/* Tablet optimizations */
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .float-icon {
        width: 50px;
        height: 50px;
    }
    
    .float-icon i {
        font-size: 20px;
    }
}