/* Get Quote Form Styles */
.form-sections p {
    transition: all 0.3s ease;
    font-weight: normal;
    opacity: 0.5;
    pointer-events: none; /* Disable clicking */
    margin: 0;
    padding: 10px 0;
}

.form-sections p.active {
    color: #FF5777;
    font-weight: bold;
    opacity: 1;
}

.form-sections .arrow-01,
.form-sections .arrow-02,
.form-sections .arrow-03 {
    display: inline-block;
    margin-left: 5px;
    transition: all 0.3s ease;
}

/* Hide all form sections by default */
.about-you-section,
.about-your-project-section,
.about-your-budget-section {
    display: none;
}

/* Initial state - show first section */
.about-you-section {
    display: block;
}

/* Show active section */
.about-you-section.active,
.about-your-project-section.active,
.about-your-budget-section.active {
    display: block !important;
}

/* Navigation Buttons */
.section-nav {
    display: none;
    margin-top: 20px;
    text-align: right;
}

.nav-button {
    background-color: #FF5777;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 10px;
    min-height: 44px;
}

.nav-button:hover {
    background-color: #ff3d63;
}

.nav-button .arrow {
    font-size: 24px;
    line-height: 1;
}

.nav-button.prev-button {
    padding-left: 25px;
    padding-right: 35px;
}

.nav-button.prev-button .arrow {
    margin-right: 5px;
}

/* Submit button specific styles */
.nav-button.submit-button {
    background-color: #FF5777;
    font-size: 20px;
    padding: 15px 30px;
    border-radius: 25px;
    min-width: 220px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-button.submit-button .arrow {
    position: relative;
    top: 2px;
    margin-left: 8px;
}

.nav-button.show {
    display: inline-flex;
    animation: pulse 2s infinite;
}

/* Hide old submit button styles */
.submit_button {
    display: none;
}

/* Countdown Timer Styles */
.countdown-timer {
    display: none;
    margin-top: 10px;
    color: #FF5777;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
