/* Saturn Edge Custom Styles */

/* --- Variables --- */
:root {
    --se-color-primary: #19191A; /* Dark background from main theme */
    --se-color-accent: #FFFFFF; /* White text */
    --se-color-brand: #000000; /* Black buttons */
    --se-color-gray: #888888;
    --se-color-border: #E5E5E5;
    --se-transition: all 0.3s ease-in-out;
}

/* --- Floating WhatsApp Button --- */
.se-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--se-transition);
}

.se-whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.se-whatsapp-icon {
    margin-top: 2px;
}

/* --- Multi-Step Form Container --- */
.se-contact-section {
    padding: 100px 0;
    background-color: #F9F9F9;
}

.se-form-container {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* --- Progress Bar --- */
.se-progress-bar-container {
    margin-bottom: 40px;
}

.se-progress-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.se-step-indicator {
    width: 30px;
    height: 30px;
    background: #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    transition: var(--se-transition);
}

.se-step-indicator.active {
    background: var(--se-color-brand);
    color: #FFF;
}

.se-step-indicator.completed {
    background: #4CAF50;
    color: #FFF;
}

.se-progress-line-bg {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #E0E0E0;
    z-index: 1;
}

.se-progress-line-fill {
    position: absolute;
    top: 15px;
    left: 0;
    height: 2px;
    background: var(--se-color-brand);
    z-index: 1;
    width: 0%;
    transition: width 0.4s ease;
}

/* --- Form Steps --- */
.se-form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.se-form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.se-step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--se-color-primary);
    text-align: center;
}

/* --- Selection Grids (Services & Budget) --- */
.se-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.se-selection-card {
    background: #fff;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--se-transition);
    font-weight: 500;
}

.se-selection-card:hover {
    border-color: #aaa;
}

.se-selection-card.selected {
    border-color: var(--se-color-brand);
    background-color: #f0f0f0;
}

.se-selection-input {
    display: none;
}

/* --- Input Fields --- */
.se-input-group {
    margin-bottom: 20px;
}

.se-input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.se-form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--se-transition);
}

.se-form-control:focus {
    border-color: var(--se-color-brand);
    outline: none;
}

/* --- Navigation Buttons --- */
.se-form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.se-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--se-transition);
    border: none;
}

.se-btn-prev {
    background: #E0E0E0;
    color: #333;
}

.se-btn-prev:hover {
    background: #d0d0d0;
}

.se-btn-next, .se-btn-submit {
    background: var(--se-color-brand);
    color: #FFF;
    margin-left: auto; /* Push to right if alone */
}

.se-btn-next:hover, .se-btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .se-form-container {
        padding: 30px 20px;
    }
    .se-selection-grid {
        grid-template-columns: 1fr;
    }
    .se-whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}
