
/* Custom Styles for Signup Page to match the provided design */

/* Hide default navigation on signup page if needed */
.signup-page header {
    display: none;
}

body.signup-page {
    background: #021526 url('../img/banner/background-gps-tech.svg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
}

/* Enhanced background glow effect */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(11, 58, 91, 0.2) 0%, transparent 70%);
}

.signup-header {
    text-align: center;
    padding: 60px 0 30px;
}

.signup-header h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(25, 118, 210, 0.4);
    margin: 0;
}

.main-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    max-width: 1150px;
    width: 95%;
    margin: 20px auto 60px;
    padding: 40px;
    position: relative;
}

.lang-selector-container {
    position: absolute;
    top: 25px;
    right: 40px;
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.lang-selector-container select {
    margin-left: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px 10px;
    background: #f9f9f9;
    font-size: 13px;
}

.card-icon-top {
    width: 70px;
    height: 70px;
    background: #fff8e1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card-icon-top i {
    font-size: 30px;
    color: #fbc02d;
}

.main-card-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 10px;
}

.main-card-subtitle {
    text-align: center;
    color: #777;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.options-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Glass effect specifically for inner cards only */
.option-card {
    flex: 1;
    min-width: 320px;
    max-width: 520px;
    border-radius: 25px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card.new-user {
    background: linear-gradient(180deg, #ffda6a 0%, #fff9e6 100%);
    border: 1px solid rgba(255, 179, 0, 0.15);
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.1);
}

.option-card.new-user:hover {
    background: linear-gradient(180deg, #fccb3a 0%, #fff2cc 100%);
    border-color: rgba(255, 179, 0, 0.3);
}

.option-card.new-user .option-title {
    color: #1e293b;
}

.option-card.new-user .option-desc {
    color: #475569;
}

.option-card.new-user .status-badge {
    background: #ffcc33;
    color: #1e293b;
    font-weight: 800;
}

.option-card.new-user .option-icon {
    background: #fff9c4;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.2);
    border-radius: 18px;
}

.option-card.new-user .option-icon i {
    color: #1e293b;
}

.option-card.new-user .checklist li {
    color: #475569;
}

.option-card.new-user .checklist li i {
    color: #ffb300;
}

.option-card.new-user .tag-btn {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: none;
}

.option-card.new-user .arrow-btn {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.option-card.existing-user {
    background: linear-gradient(180deg, #cce3ff 0%, #f0f7ff 100%);
    border: 1px solid rgba(30, 136, 229, 0.1);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.08);
}

.option-card.existing-user:hover {
    background: linear-gradient(180deg, #bbdaff 0%, #e6f2ff 100%);
    border-color: rgba(30, 136, 229, 0.2);
}

.option-card.existing-user .option-title {
    color: #1e293b;
}

.option-card.existing-user .option-desc {
    color: #475569;
}

.option-card.existing-user .status-badge {
    background: #bfdbfe;
    color: #1e40af;
    font-weight: 800;
}

.option-card.existing-user .option-icon {
    background: #f0f7ff;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.15);
    border-radius: 18px;
}

.option-card.existing-user .option-icon i {
    color: #1e293b;
}

.option-card.existing-user .checklist li {
    color: #475569;
}

.option-card.existing-user .checklist li i {
    color: #3b82f6;
}

.option-card.existing-user .tag-btn {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: none;
}

.option-card.existing-user .arrow-btn {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.option-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    justify-content: space-between;
    width: 100%;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.option-icon i {
    font-size: 20px;
}

.option-title-group {
    flex-grow: 1;
    padding-right: 10px;
}

.option-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.option-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0,0,0,0.05);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 5px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.checklist li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
}

.checklist li i {
    margin-right: 10px;
    font-size: 16px;
}

.tag-buttons {
    display: flex;
    gap: 10px;
}

.tag-btn {
    background: #fff;
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tag-btn i {
    margin-right: 5px;
    font-size: 12px;
}

.arrow-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer redesign */
.footer-new {
    background: #fff;
    padding: 50px 0 40px;
    color: #333;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Stretch to make all cards same height */
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; /* Center content vertically when stretched */
    gap: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-copyright {
    font-size: 11px;
    color: #94a3b8;
    margin: 0 0 10px 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: #e2e8f0; /* Stay the same background */
}

.social-links a.facebook:hover i { color: #1877F2; }
.social-links a.youtube:hover i { color: #FF0000; }
.social-links a.instagram:hover i { color: #E4405F; }

.footer-column {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: rgba(241, 245, 249, 0.8);
    border-radius: 15px;
    padding: 25px; /* Increased padding */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.footer-column:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer-column-title {
    font-size: 11px;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-contact-item i {
    color: #64748b;
    margin-top: 3px;
    font-size: 12px;
}

.footer-contact-info h6 {
    margin: 0;
    font-size: 10px;
    color: #94a3b8;
    text-transform: none;
}

.footer-contact-info a {
    margin: 0;
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #fbc02d;
    text-decoration: none;
}

.footer-contact-item:hover i {
    color: #fbc02d;
    transition: color 0.3s ease;
}

.footer-contact-info p {
    margin: 0;
    color: #334155;
    font-weight: 500;
}

/* Floating buttons */
.float-btn {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.float-whatsapp {
    left: 25px;
    background: #25d366;
}

.float-search {
    right: 25px;
    background: #e91e63;
}

@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
    }
    .option-card {
        width: 100%;
    }
    .main-card {
        padding: 30px 20px;
    }
    .lang-selector-container {
        position: static;
        margin-bottom: 20px;
        justify-content: center;
    }
    .signup-header h1 {
        font-size: 32px;
    }
}
