/* Yacht Finder Section Styles */
.yacht-finder-section {
    background: linear-gradient(135deg, #1a535c 0%, #4ecdc4 100%);
    padding: 2rem 2rem;
    margin: 2rem 0;
}

.finder-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.finder-container h2 {
    color: #1a535c;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.finder-intro {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.finder-steps {
    position: relative;
    min-height: 200px;
}

.finder-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.finder-step.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.finder-step h3 {
    color: #1a535c;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.finder-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.budget-options {
    grid-template-columns: repeat(3, 1fr);
}

.finder-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.2rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.finder-option:hover {
    border-color: #4ecdc4;
    background: #f0fffe;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.finder-option i {
    font-size: 1.8rem;
    color: #1a535c;
    margin-bottom: 0.3rem;
}

.finder-option span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a535c;
    display: block;
}

.finder-option small {
    font-size: 0.75rem;
    color: #999;
    display: block;
}

.finder-option:active {
    transform: scale(0.98);
}

/* Progress Bar */
.finder-progress {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e0e0e0;
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a535c 0%, #4ecdc4 100%);
    width: 25%;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* Result Screen */
.finder-result {
    text-align: center;
}

.result-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.result-content h3 {
    color: #1a535c;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.result-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.result-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.result-actions .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #1a535c 0%, #4ecdc4 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: white;
    color: #1a535c;
    border: 2px solid #1a535c;
}

.btn-secondary:hover {
    background: #f0fffe;
    border-color: #4ecdc4;
    color: #1a535c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .yacht-finder-section {
        padding: 2rem 1rem;
    }

    .finder-container {
        padding: 2rem 1.5rem;
    }

    .finder-container h2 {
        font-size: 1.5rem;
    }

    .finder-intro {
        font-size: 0.95rem;
    }

    .finder-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .budget-options {
        grid-template-columns: 1fr;
    }

    .finder-option {
        padding: 1.5rem 1rem;
    }

    .finder-option i {
        font-size: 2rem;
    }

    .finder-step h3 {
        font-size: 1.2rem;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .btn {
        width: 100%;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .finder-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .budget-options {
        grid-template-columns: repeat(3, 1fr);
    }
}
