/* ============ PREMIUM CALL BACK FORM STYLES ============ */

/* Background Elements */
.call-back-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 163, 0.1), rgba(192, 132, 197, 0.05));
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Main Badge */
.call-back-badge-main {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(168, 85, 163, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Title */
.call-back-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #a855a3, #c084c5, #b8860b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.call-back-main-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Container */
.premium-call-back-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Premium Image Section */
.premium-image-section {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.premium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 163, 0.8) 0%,
        rgba(192, 132, 197, 0.6) 50%,
        rgba(184, 134, 11, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgb(74 0 116 / 90%);
    font-weight: 500;
}

/* Premium Form Section */
.premium-form-section {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    backdrop-filter: blur(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(168, 85, 163, 0.3);
    position: relative;
}

.form-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.form-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label i {
    color: #a855a3;
    font-size: 0.9rem;
}

/* Premium Inputs */
.premium-input,
.premium-select,
.premium-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    outline: none;
    border-color: #a855a3;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 163, 0.15);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855a3, #c084c5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.premium-input:focus + .input-border,
.premium-select:focus + .input-border,
.premium-textarea:focus + .input-border {
    transform: scaleX(1);
}

.premium-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Premium Checkbox */
.premium-checkbox {
    position: relative;
}

.premium-checkbox input[type="checkbox"] {
    display: none;
}

.premium-checkbox label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #1e293b;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.premium-checkbox label:hover {
    background: rgba(248, 250, 252, 1);
    transform: translateY(-1px);
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-custom i {
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.premium-checkbox input[type="checkbox"]:checked + label .checkbox-custom {
    background: linear-gradient(135deg, #a855a3, #c084c5);
    border-color: #a855a3;
}

.premium-checkbox input[type="checkbox"]:checked + label .checkbox-custom i {
    opacity: 1;
    transform: scale(1);
}

/* Premium Submit Button */
.premium-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 85, 163, 0.3);
}

.premium-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(168, 85, 163, 0.4);
}

.premium-submit-btn:active {
    transform: translateY(0);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.premium-submit-btn:hover .btn-shine {
    left: 100%;
}

.premium-submit-btn.loading .btn-content {
    display: none;
}

.premium-submit-btn.loading .btn-loading {
    display: flex !important;
}

/* Form Footer */
.form-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #22c55e;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .premium-form-section {
        padding: 2.5rem;
    }
    
    .form-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .premium-call-back-container {
        margin-top: 2rem;
    }
    
    .premium-image-section {
        min-height: 400px;
    }
    
    .premium-form-section {
        padding: 2rem;
    }
    
    .call-back-main-title {
        font-size: 2.5rem;
    }
    
    .floating-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .premium-form-section {
        padding: 1.5rem;
    }
    
    .call-back-main-title {
        font-size: 2rem;
    }
    
    .call-back-main-description {
        font-size: 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .form-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .premium-form-section {
        padding: 1rem;
    }
    
    .call-back-main-title {
        font-size: 1.75rem;
    }
    
    .premium-input,
    .premium-select,
    .premium-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .premium-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .call-back-badge-main {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}
