.autotech-selector-wrapper {
    --primary: rgb(0, 74, 173);
    --primary-hover: rgb(0, 56, 131);
    --secondary: #00509d;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f4f7f6;
    --card-bg: #ffffff;
    --border-color: #eeeeee;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;

    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.autotech-selector-wrapper * {
    box-sizing: border-box;
}

.autotech-selector-wrapper .title-section {
    text-align: center;
    margin-bottom: 40px;
}

.autotech-selector-wrapper .title-section h1 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Steps Progress Bar */
.autotech-selector-wrapper .steps-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 30px;
}

.autotech-selector-wrapper .step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition);
    user-select: none;
}

.autotech-selector-wrapper .step-item:hover {
    opacity: 0.9 !important;
}

.autotech-selector-wrapper .step-item.active {
    opacity: 1 !important;
    font-weight: bold;
}

.autotech-selector-wrapper .step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--text-muted);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.autotech-selector-wrapper .active .step-circle,
.autotech-selector-wrapper .step-item:hover .step-circle {
    background: var(--primary);
}

/* Grid Layout */
.autotech-selector-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Card Style */
.autotech-selector-wrapper .card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.autotech-selector-wrapper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.autotech-selector-wrapper .card img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.autotech-selector-wrapper .card h2 {
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
}

.autotech-selector-wrapper .card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 48px;
}

.autotech-selector-wrapper .btn {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
    width: 100%;
    border: none;
    cursor: pointer;
}

.autotech-selector-wrapper .btn:hover {
    background: var(--primary-hover);
}

.autotech-selector-wrapper .btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary) !important;
    padding: 14px 32px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.autotech-selector-wrapper .btn-secondary:hover {
    background: var(--secondary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 80, 157, 0.2);
}

/* Step 2 Specifics */
.autotech-selector-wrapper .overlay-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
}

.autotech-selector-wrapper .overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.autotech-selector-wrapper .overlay-card:hover img {
    opacity: 0.5;
    transform: scale(1.05);
}

.autotech-selector-wrapper .overlay-content {
    position: absolute;
    color: white;
    padding: 20px;
    z-index: 1;
}

.autotech-selector-wrapper .overlay-content h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

/* Contact Form */
.autotech-selector-wrapper .contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.autotech-selector-wrapper .horizontal-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.autotech-selector-wrapper .horizontal-form .form-group {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0px !important;
}

.autotech-selector-wrapper .horizontal-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.autotech-selector-wrapper .horizontal-form input {
    width: 100%;
    padding: 12px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    height: 48px !important;
    box-shadow: none !important;
    background: #fff !important;
}

.autotech-selector-wrapper .horizontal-form .contact-button {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    height: auto;
    white-space: nowrap;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.autotech-selector-wrapper .horizontal-form .contact-button:hover {
    background: var(--primary-hover);
}

.autotech-selector-wrapper .divider {
    margin: 30px 0;
    position: relative;
    text-align: center;
}

.autotech-selector-wrapper .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.autotech-selector-wrapper .divider span {
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.autotech-selector-wrapper .whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
}

.autotech-selector-wrapper .whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white !important;
}

.autotech-selector-wrapper .whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.autotech-selector-wrapper #success-state {
    text-align: center;
    padding: 20px;
}

.autotech-selector-wrapper #success-state h3 {
    color: #25D366;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .autotech-selector-wrapper .grid {
        grid-template-columns: 1fr;
    }

    .autotech-selector-wrapper .contact-container {
        padding: 20px;
    }
}

/* Navigation Utilities */
.autotech-selector-wrapper .step-content {
    display: none;
}

.autotech-selector-wrapper .step-content.active {
    display: block;
}

.autotech-selector-wrapper .back-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.autotech-selector-wrapper .back-btn:hover {
    text-decoration: underline;
}