/* assets/css/wide-fist-getstarted.css */


/* Exact match to template styles */

#wide-fist-getstarted-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#wide-fist-getstarted-overlay:not([style*="display: none"]) {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content.glass-bg {
    width: 100%!important;
    max-width: 700px!important;
    max-height: 90%!important;
    overflow-y: auto!important;
    border-radius: 30px!important;
    position: relative!important;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3)!important;
    background: rgba(255, 255, 255, 0.95)!important;
    backdrop-filter: blur(20px)!important;
    -webkit-backdrop-filter: blur(20px)!important;
    transform: scale(0.9)!important;
    opacity: 0!important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease!important;
}

.popup-content.glass-bg.active {
    transform: scale(1)!important;
    opacity: 1!important;
}

.close-popup-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-popup-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.wide-fist-getstarted-content {
    padding: 50px 40px 30px;
}

.getstarted-footer {
    padding: 25px 40px;
    background: linear-gradient(to right, rgba(53, 182, 58, 0.05), rgba(53, 182, 58, 0.1), rgba(53, 182, 58, 0.05));
    border-top: 1px solid rgba(53, 182, 58, 0.1);
    border-radius: 0 0 30px 30px;
}

.footer-label {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


/* Service cards matching template */

.service-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideUp 0.5s ease-out forwards;
    cursor: pointer;
    border: 2px solid rgba(53, 182, 58, 0.2);
    border-radius: 12px;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100px;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(53, 182, 58, 0.25);
}

.service-card.selected {
    border-color: #35B63A;
    background: linear-gradient(135deg, rgba(53, 182, 58, 0.08), rgba(53, 182, 58, 0.03));
    animation: borderGlow 2s ease-in-out infinite;
    opacity: 1!important;
}

@keyframes borderGlow {
    0%,
    100% {
        border-color: rgba(53, 182, 58, 0.3);
    }
    50% {
        border-color: rgba(53, 182, 58, 0.8);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.card-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 15px;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e!important;
    margin: 0;
    flex: 1;
}

.card-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(53, 182, 58, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card.selected .card-check {
    border-color: #35B63A;
    background: #35B63A;
}

.service-card.selected .card-check svg {
    opacity: 1;
}

.card-check svg {
    opacity: 0;
    transition: opacity 0.3s ease;
}


/* Step content animations */

.step-content {
    animation: slideUp 0.4s ease-out;
}


/* Input fields matching template */

.input-field {
    transition: all 0.3s ease!important;
    border: 2px solid rgba(53, 182, 58, 0.2)!important;
    width: 100%!important;
    padding: 18px 20px!important;
    font-size: 1rem!important;
    border-radius: 12px!important;
    background: #f8f9fa!important;
    color: #1a1a2e!important;
    font-family: "Titillium Web", sans-serif!important;
}

.input-field:focus {
    border-color: #35B63A!important;
    box-shadow: 0 0 0 4px rgba(53, 182, 58, 0.15)!important;
    outline: none!important;
}


/* Next button matching template */

.next-btn {
    position: relative!important;
    overflow: hidden!important;
    width: 100%;
    padding: 16px;
    background: #35B63A!important;
    color: white!important;
    font-size: 1rem!important;
    font-weight: 600;
    border: none;
    border-radius: 12px!important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Titillium Web", sans-serif!important;
}

.next-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.next-btn:hover::after {
    transform: scale(2);
}


/* Shimmer button for submit */

.shimmer-btn {
    background: linear-gradient(90deg, #35B63A, #2a9c2f, #35B63A);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.shimmer-btn:hover {
    animation: shimmer 1.5s linear infinite, pulse-glow 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(53, 182, 58, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(53, 182, 58, 0.6);
    }
}


/* Summary box */

.summary-box {
    background: linear-gradient(135deg, rgba(53, 182, 58, 0.08), rgba(53, 182, 58, 0.03));
    border-radius: 15px;
    padding: 16px 10px;
    margin-bottom: 10px;
    border-left: 4px solid #35B63A;
}

.summary-label {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #35B63A;
    margin: 0;
}


/* Back button */

#step2-back,
#step3-back {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.3s ease;
    font-family: "Titillium Web", sans-serif;
}

#step2-back:hover,
#step3-back:hover {
    color: #35B63A;
}


/* Location input with icon */

.location-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.location-input-wrapper svg {
    position: absolute;
    left: 5px;
    top: -10px;
    transform: translateY(-50%);
    pointer-events: none;
}


/* Character counters */

#location-counter,
#requirements-counter {
    text-align: right;
    margin-top: 5px;
    font-size: 0.8rem;
    color: #666;
}


/* Success screen */

#close-success {
    margin-top: 25px;
    padding: 12px 35px;
    background: #1a1a2e;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Titillium Web", sans-serif;
}

#close-success:hover {
    background: #2d3748;
    transform: translateY(-2px);
}


/* Responsive */

@media (max-width: 768px) {
    #wide-fist-getstarted-overlay {
        padding: 10px;
    }
    .popup-content.glass-bg {
        max-height: 95%;
    }
    .wide-fist-getstarted-content {
        padding: 15px;
    }
    .getstarted-footer {
        padding: 10px;
    }
    .footer-links {
        gap: 10px;
        align-items: center;
    }
    .card-content {
        padding: 0 5px;
        gap: 5px;
    }
}


/* Ensure font matches template */

body {
    font-family: "Titillium Web", sans-serif;
}

.getstarted-footer a {
    color: #35B63A;
    /* line-height: 24px; */
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none!important;
    transition: opacity 0.3s ease;
}

.getstarted-footer a:hover {
    color: #666;
}