/* Ango Estimator Styles */

/* Conteneur principal - Mimic elementor container logic if needed, 
   but specific styles for the defined classes */
.ango-form-container {
	padding: 20px;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	min-height: 300px; /* Prevent layout shift */
}

/* Barre de progression Néon */
.ango-progress-bar {
	height: 4px;
	background: #222;
	margin-bottom: 30px;
	border-radius: 2px;
	overflow: hidden;
}

.ango-progress-fill {
	height: 100%;
	background: #00ff00; /* Vert Matrix par défaut, modifiable */
	box-shadow: 0 0 10px #00ff00;
	transition: width 0.5s ease;
	width: 0%;
}

/* Option Cards */
.ango-option-card {
	background: rgba(255, 255, 255, 0.05); /* Fond vitré */
    backdrop-filter: blur(10px); /* Glassmorphism */
    -webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* État Hover */
.ango-option-card:hover {
	border-color: #ff4500; /* Orange Ango */
	transform: translateY(-3px); /* Soulèvement */
    background: rgba(255, 255, 255, 0.08);
}

/* État Sélectionné (Active) */
.ango-option-card.active {
	background: rgba(255, 69, 0, 0.15); /* Fond orange très léger */
	border-color: #ff4500;
	box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3); /* Glow Néon */
}

/* Typos - Inherit from Theme but ensure visibility */
.ango-form-content h3.elementor-heading-title {
	margin-bottom: 30px;
    line-height: 1.3;
}

/* Media Query Mobile */
@media (max-width: 767px) {
    .ango-form-container {
        padding: 10px;
    }
    
    .ango-option-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .ango-form-content .ango-sub-options {
        flex-direction: column;
    }

    .ango-form-content .ango-option-card.small {
        width: 100%;
    }
}

/* Navigation Buttons Container */
.ango-nav-actions {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}
